Class LineSeries
Represents a LineSeries in which the data points are connected with a line.
Inherited Members
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class LineSeries : GraphSeries2D, INamedObject, ILineSeries, IScatterSeries, IGraphSeries2D, IGraphSeries
Constructors
LineSeries()
Properties
ConditionalFormatting
Gets the ConditionalFormatting rules which are applied on the series' style.
Declaration
public ConditionalFormatting ConditionalFormatting { get; }
Property Value
ConditionalFormatting
|
DataPointLabelAlignment
Gets or sets a value indicating how the labels of the data points to be aligned.
Declaration
public LineDataPointLabelAlignment DataPointLabelAlignment { get; set; }
Property Value
LineDataPointLabelAlignment
|
DataPointLabelOffset
Gets or sets the DataPointLabel offset, according the DataPointLabelPosition.
Declaration
public Unit DataPointLabelOffset { get; set; }
Property Value
Unit
|
LineStyle
Gets the style applied to the line that connects the data points of this series.
Declaration
public Style LineStyle { get; }
Property Value
Style
|
LineType
Gets or sets a value indicating how to connect the data points: with smooth, straight or stepped lines.
Declaration
public LineSeries.LineTypes LineType { get; set; }
Property Value
LineSeries.LineTypes
|
MarkerMaxSize
Gets or sets the size for the maximum value of the Size property.
Declaration
public Unit MarkerMaxSize { get; set; }
Property Value
Unit
|
Remarks
Use the MarkerMinSize and MarkerMaxSize properties in conjunction with the Size property to create a Bubble chart;
MarkerMinSize
Gets or sets the size of the markers for the minimum value of the Size property.
Declaration
public Unit MarkerMinSize { get; set; }
Property Value
Unit
|
Remarks
Use the MarkerMinSize and MarkerMaxSize properties in conjunction with the Size property to create a Bubble chart;
MarkerSize
Gets or sets the size of the markers if no Size is specified;
Declaration
public Unit MarkerSize { get; set; }
Property Value
Unit
|
MarkerType
Gets or sets the shape of the marker.
Declaration
public DataPointMarkerType MarkerType { get; set; }
Property Value
DataPointMarkerType
|
MaximumSize
Gets or sets a value that defines the maximum size of the markers. Use this property to create a Bubble like charts.
Declaration
public double MaximumSize { get; set; }
Property Value
System.Double
The maximum size of the markers/bubbles. Set to System.Double.NaN for the value to be defined at run time according to the data. The default value is System.Double.NaN. |
MinimumSize
Gets or sets a value that defines the minimum size of the markers. Use this property to create a Bubble like charts.
Declaration
public double MinimumSize { get; set; }
Property Value
System.Double
The minimum size of the markers/bubbles. Set to System.Double.NaN for the value to be defined at run time according to the data. The default value is System.Double.NaN. |
MissingValuesLineStyle
Gets the style applied to the line that connects the points on both sides of a data point with a missing value.
Declaration
public Style MissingValuesLineStyle { get; }
Property Value
Style
|
Size
Gets or sets an expression that defines the size of the markers. Use this property to create a Bubble like charts.
Declaration
public string Size { get; set; }
Property Value
System.String
|
SmoothLine
Gets or sets a value indicating how to connect the data points: with a smooth or straight lines.
Declaration
[Obsolete("Telerik.Reporting.LineSeries.SmoothLine property is now obsolete. Please use Telerik.Reporting.LineSeries.LineType property and set its value to Telerik.Reporting.LineType.Smooth.")]
public bool SmoothLine { get; set; }
Property Value
System.Boolean
|
Remarks
When the SmoothLine is enabled the data points are connected with Bezier curves.