Line Chart
Overview
A line chart is a chart that shows information as a series of data points connected by straight line segments.
The line chart is very common in many fields. As a rule, it is used to emphasize trends in data over equal time intervals, such as months, quarters, fiscal years, and so on.
This article explains how to create a basic Line chart as well as configure settings that are specific to the type. You can also see the table below to get a brief overview of the Line chart's characteristics:
API | |
---|---|
Class | anychart.core.cartesian.series.Line |
DATA | |
Data Fields | x, value |
Multiple Series | YES |
OPTIONS | |
Stacked | N/A |
Vertical | Vertical Line |
3D | N/A |
Error Bars | Line Chart with Error Bars |
SUPPORTED CHART PLOTS | |
Polar | Polar Line |
Radar | Radar Line |
Scatter | Scatter Line |
Stock | Stock Line |
RELATED TYPES | |
Spline | |
Step Line | |
SEE ALSO | |
Chartopedia: Line Chart | |
General Settings |
Quick Start
To create a Line chart, use the anychart.line() chart constructor. If you pass the data to this chart constructor, it creates a line series.
To create a Line series explicitly, call the line() method.
The following sample demonstrates how a basic Line chart is created:
// create data
var data = [
{x: "January", value: 10000},
{x: "February", value: 12000},
{x: "March", value: 18000},
{x: "April", value: 11000},
{x: "May", value: 9000}
];
// create a chart
var chart = anychart.line();
// create a line series and set the data
var series = chart.line(data);
// set the container id
chart.container("container");
// initiate drawing the chart
chart.draw();
General Settings
In AnyChart there are many settings that are configured in the same way for all chart types, including the Line chart (for example, legend and interactivity settings).
Read the overview of general settings: General Settings.
Special Settings
Appearance
Here is a full list of methods used to configure visual settings that are available for the Line series:
- color() and stroke() set the color and stroke
- hoverStroke() configures the stroke on hover
- selectStroke() configures the stroke on select
You can learn more from the Appearance Settings section.
In the sample below, there are two Line series with some of the appearance settings configured:
// create the first series
var series1 = chart.line(seriesData_1);
// configure the visual settings of the first series
series1.stroke("#00cc99", 1, "10 5", "round");
series1.hoverStroke("#00cc99", 2, "10 5", "round");
series1.selectStroke("#00cc99", 4, "10 5", "round");
// create the second series
var series2 = chart.line(seriesData_2);
// configure the visual settings of the second series
series2.stroke("#0066cc");
series2.hoverStroke("#0066cc", 2);
series2.selectStroke("#0066cc", 4);
Labels
Labels are text or image elements that can be placed anywhere on any chart (you can enable them on a whole series or in a single point). For text labels, font settings and text formatters are available.
Tooltips
A Tooltip is a text box displayed when a point on a chart is hovered. There is a number of visual and other settings available: for example, you can edit the text by using font settings and text formatters, change the style of background, adjust the position of a tooltip, and so on.
Vertical Line
Most types of series in AnyChart can be drawn both in horizontal and vertical orientation: Vertical Charts.
Here is the information about creating Vertical Line series: