Vertical Chart in ASP.NET Core Charts
18 Nov 20181 minute to read
Vertical Chart
To draw a chart in a vertical manner, change the orientation of the axis using the isTransposed property, which is supported by all series types.
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.
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.