Line Chart in ASP.NET Core Charts
18 Nov 20182 minutes to read
Line
To render a line series in your chart, you need to follow a few steps to configure it correctly. Here’s a concise guide on how to do this:
-
Set the series type: Define the series
typeas Line in your chart configuration. This indicates that the data should be represented as a line chart, which is ideal for visualizing trends over time or across categories.
Binding data with series
You can bind data to the chart using the dataSource property within the series configuration. This allows you to connect a JSON dataset or remote data to your chart. To display the data correctly, map the fields from the data to the chart series xName and yName properties.
Series customization
The following properties can be used to customize the line series.
Fill
The fill property determines the color applied to the series.
The fill property can be used to apply a gradient color to the line series. By configuring this property with gradient values, you can create a visually appealing effect in which the color transitions smoothly from one shade to another.
Opacity
The opacity property specifies the transparency level of the fill. Adjusting this property allows you to control how opaque or transparent the fill color of the series appears.
Dash array
The dashArray property determines the pattern of dashes and gaps in the series.
Width
The width property specifies the stroke width applied to the series.
Multicolored line
To render a multicolored line series in your chart, you need to follow a few steps to configure it correctly. Here’s a concise guide on how to do this:
-
Set the series type: Define the series
typeas MultiColoredLine in your chart configuration. This specifies that the series should be rendered as a multicolored line chart, with different segments of the line having distinct colors. -
Map individual colors: Utilize the
pointColorMappingproperty to assign individual colors to each data point. This allows you to customize the color of each segment of the line based on your data.
Empty points
Data points with null or undefined values are considered empty. Empty data points are ignored and not plotted on the chart.
Mode
Use the mode property to define how empty or missing data points are handled in the series. The default mode for empty points is Gap.
Fill
Use the fill property to customize the fill color of empty points in the series.
Border
Use the border property to customize the width and color of the border for empty points.
Events
Series Render
The seriesRender event allows you to customize series properties, such as data, fill, and name, before they are rendered on the chart.
Point render
The pointRender event allows you to customize each data point before it is rendered on the chart.