Additional Axes

Overview


In AnyChart charting library axis is a line at the edge of the chart that displays scale calculations to which series (or chart) values referred for measurement. You can add multiple X- and Y-axes to your charts with AnyChart.

This article describes how to use the multi axis feature of AnyChart js framework. With this feature an arbitrary number of axes can be added to the chart. AnyChart itself doesn't impose any restrictions on the number of additional axes but from a practical concern it is most likely very difficult to interpret a chart with more than 2-3 additional axes.

Consider using multiple axes when you need:

  • Compare data point values in different units, for example: Celsius against Fahrenheit degrees, kilopascal (KPa) or hectopascal (HPa) against millimeters or inches of mercury (mmHg or inHg), different currencies (USD against EUR), etc.
  • Show data from the different ranges on the same plot, for example: absolute stock price changes and sales volume (price will be in dollars and volume in millions of dollars)
  • Show data measured in different units on the same plot, for example: gross domestic product (GDP) volume and GDP growth rate (GDP will be shown in billions and rate as a percentage)

Declaration

If you want to declare an additional axis all you need to do is to set index to it, and set as many yAxis() or xAxis() methods as you want:

// First additional axis
var yAxis1 = chart.yAxis(1);
yAxis1.orientation("right");
yAxis1.title("First additional axis");
  
// Second additional axis
var yAxis2 = chart.yAxis(2);
yAxis2.orientation("right");
yAxis2.title("Second additional axis");
  
// Third additional axis
var yAxis3 = chart.yAxis(3);
yAxis3.orientation("right");
yAxis3.title("Third additional axis");

Here is the sample of the js chart that shows three additional Y-axes and almost no configuration is done, as you can see three additional axes are drawn on the right side of data plot and their maximum and minimum values are calculated automatically (and they are the same as main Y-axis):

Playground

Another example of multiple axes use is multiple Y-axes along with multiple X-axes, which may be very useful on scatter plot:

Playground

Tuning

If you want to change any settings of additional axes you can do that just the same way as basic X- and Y-axes are configured, see Axes basics and Scales articles for the details:

var yScale = chart.yScale();
yScale.minimum(0);
yScale.maximum(800000);
yScale.ticks().interval(100000);
yScale.minorTicks().interval(20000);

// setting for y axis title
chart.yAxis().title("Basic Y Axis");

// adding extra Y scale
var extraYScale = anychart.scales.linear();
extraYScale.minimum(800000);
extraYScale.maximum(1600000);
extraYScale.ticks().interval(100000);
extraYScale.minorTicks().interval(20000);

// adding and adjust extra Y axis
var extraYAxis = chart.yAxis(1);
extraYAxis.orientation("right");
extraYAxis.scale(extraYScale);
extraYAxis.title("Extra Y Axis");

In the a sample below we will add one additional axis and set value ranges and titles for both the basic Y-axis and additional Y-axis:

Playground

Binding Series

To bind data series to the certain axis you should specify it in series.yScale() or series.xScale() attribute. By default all series work with chart.yScale() or chart.xScale():

var firstSeries = [
  ["A", 637166],
  ["B", 721630],
  ["C", 148662],
  ["D", 78662],
  ["E", 90000]
];

var secondSeries = [
  ["A", 95],
  ["B", 97],
  ["C", 96],
  ["D", 70],
  ["E", 35]
];

var columnSeries = chart.column(firstSeries);

var lineSeries = chart.line(secondSeries);
lineSeries.yScale(extraYScale);

In the a sample below we add one additional axis with a range from 0 to 100 and bind series of "Line" type to it:

Playground

Multi Axes Sample for Comparing Units

Lets see how additional axes can be used to compare data in different units, for example we measure temperature and want to show Celsius, Fahrenheit and Kelvin scales. To do that we have to create three Y-axes - the basic one will be Celsius degrees, first additional axis - Fahrenheit and second additional axis - Kelvin.

Here it is - a sample that shows different important temperatures:

Playground

Multi Axes Sample for Showing Different Data on the Same Plot

Lets see how additional axes can be used to show different data on the same plot: we will plot a US Debt amount in dollars and as a percentage of GDP. We need to create one additional axis adjust both basic and additional axes:

// setting yScale settings
var yScale = chart.yScale();
yScale.minimum(0);
yScale.maximum(12000000000000);
yScale.ticks().interval(2000000000000);

// adding and adjusting extra Y scale
var extraYScale = anychart.scales.linear();
extraYScale.minimum(0);
extraYScale.maximum(140);
extraYScale.ticks().interval(20);

// adding and adjusting extra Y axis
var extraYAxis = chart.yAxis(1);
extraYAxis.orientation("right");
extraYAxis.scale(extraYScale);

// setting yAxes titles
chart.yAxis(0).title("Debt");
extraYAxis.title("GDP");

// yAxes labels text adjusting
chart.yAxis(0).labels().format("${%value}{scale:(1000000000000)|(T)}");
chart.yAxis(1).labels().format("{%value}%");

We defined two axes and will create one series of a Column type to show debt and bind it to yAxis, one series of a Line type to show percentage changes.

Here it is - a sample chart comparing the US debt, in dark red, to the debt as percentage of GDP, in blue.

Playground