Intersoft ClientUI Documentation
ConnectorLength Property



Gets or sets value indicates length of connector data label
Syntax
Public Property ConnectorLength As Double
Dim instance As DataLabel
Dim value As Double
 
instance.ConnectorLength = value
 
value = instance.ConnectorLength
public double ConnectorLength {get; set;}
public:
property double ConnectorLength {
   double get();
   void set (    double value);
}
Remarks
Data label have line shape connector to connect the data label and data point. You can set connector length with DataLabelConnectorLength property.
Example
XAML
Copy Code
<Intersoft:UXChart >
    <Intersoft:UXChart.Series>
        <Intersoft:LineSeries DataLabelAngle="30" DataLabelConnectorLength="20" DataLabelConnectorVisibility="Visible"
                              DataLabelVisibility="Visible"
                              ItemsSource="{Binding DataSource}"
                              IndependentValueBinding="{Binding Month}"
                              DependentValueBinding="{Binding RecordHigh}">
        </Intersoft:LineSeries>
    </Intersoft:UXChart.Series>
</Intersoft:UXChart>         
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

DataLabel Class
DataLabel Members

Send Feedback