Example of Multi-Series Chart in Javascript Chart Control

/
/
Multi-Series Chart

This sample shows the annual growth of Gross Domestic Product (GDP) in France in a combination of line and stacked column series. A tooltip shows information about the data points.

More Details...

Description

In this example, you can see how to render and configure different type of charts. You can chart multiple variables on the y-axis. Tooltip is enabled in this example. To see the tooltip in action, hover a point or tap on a point in touch enabled devices. Injecting Module In this example, we have used line and column series. To use column and line feature, we need to inject ColumnSeries LineSeries modules using Chart.Inject(ColumnSeries) Chart.Inject(LineSeries) method. More information on the multiple series can be found in this documentation section.