Scrollbars

Scrollbars are useful controls that allow zooming chart's axis.

Adding scrollbars

We create a scrollbar like everything else in amCharts 5: by calling new() method of its class - Scrollbar.

Please note that scrollbar requires at least one setting to be present during instantiation: orientation.

Newly created Scrollbar object needs to be set on chart's scrollbarX setting (if we are adding a horizontal scrollbar), or scrollbarY (for vertical scrolling).

chart.set("scrollbarX", am5.Scrollbar.new(root, { orientation: "horizontal" }));
chart.set("scrollbarY", am5.Scrollbar.new(root, { orientation: "vertical" }));
chart.set("scrollbarX", am5.Scrollbar.new(root, { orientation: "horizontal" }));
chart.set("scrollbarY", am5.Scrollbar.new(root, { orientation: "vertical" }));

Horizontal scrollbar will zoom/pan all horizontal axes, whereas vertical one will affect all vertical axes.

Scrollbar elements

Scrollbar has three properties to access its three elements: startGrip, endGrip, and thumb.

The first two are elements of type Button, whereas thumb is a RoundedRectangle.

All three are fully customizable as we can override their default settings with our own.

let scrollbarX = chart.get("scrollbarX");

scrollbarX.thumb.setAll({
  fill: am5color(0x550000),
  fillOpacity: 0.1
});

scrollbarX.startGrip.setAll({
  visible: false
});

scrollbarX.endGrip.setAll({
  visible: false
});
let scrollbarX = chart.get("scrollbarX");

scrollbarX.thumb.setAll({
  fill: am5color(0x550000),
  fillOpacity: 0.1
});

scrollbarX.startGrip.setAll({
  visible: false
});

scrollbarX.endGrip.setAll({
  visible: false
});

The above will make thumb semi-transparent red, while disabling both grips.

Scrollbar background

When created, scrollbar will have its setting background set to an element of type RoundedRectangle.

We can modify any of its settings to configure scrollbar's background.

let scrollbarX = chart.get("scrollbarX");

scrollbarX.get("background").setAll({
  fill: am5color(0x000000),
  fillOpacity: 0.2,
  cornerRadiusTR: 0,
  cornerRadiusBR: 0,
  cornerRadiusTL: 0,
  cornerRadiusBL: 0
});
var scrollbarX = chart.get("scrollbarX");

scrollbarX.get("background").setAll({
  fill: am5color(0x000000),
  fillOpacity: 0.2,
  cornerRadiusTR: 0,
  cornerRadiusBR: 0,
  cornerRadiusTL: 0,
  cornerRadiusBL: 0
});

Sizing scrollbar

Width or height

To set scrollbar's height (or width for the vertical scrollbar) we can use its height (or width) setting.

let scrollbarX = am5xy.XYChartScrollbar.new(root, {
  orientation: "horizontal",
  height: 50
});
var scrollbarX = am5xy.XYChartScrollbar.new(root, {
  orientation: "horizontal",
  height: 50
});

There's a caveat, though. By default, each scrollbar has its minHeight (or minWidth) set to 12. If we need our scrollbar smaller than that, we'll need to use minHeight (or minWidth) instead:

let scrollbarX = am5xy.XYChartScrollbar.new(root, {
  orientation: "horizontal",
  minHeight: 3
});
var scrollbarX = am5xy.XYChartScrollbar.new(root, {
  orientation: "horizontal",
  minHeight: 3
});

Size of the grips

The easiest way to size scrollbar grips is to use their scale setting:

scrollbarX.startGrip.set("scale", 0.7);
scrollbarX.endGrip.set("scale", 0.7);
scrollbarX.startGrip.set("scale", 0.7);
scrollbarX.endGrip.set("scale", 0.7);

See the Pen
Sizing scrollbar elements
by amCharts team (@amcharts)
on CodePen.0

Scrollbar with chart preview

The scrollbar with chart preview acts like a regular one, except it can also display actual XY series in it.

To create a scrollbar like that, we need to use a class XYChartScrollbar instead of Scrollbar. We will also want to set its height setting to something bigger than default to accommodate chart preview in it.

let scrollbarX = am5xy.XYChartScrollbar.new(root, {
  orientation: "horizontal",
  height: 50
});

chart.set("scrollbarX", scrollbarX);
var scrollbarX = am5xy.XYChartScrollbar.new(root, {
  orientation: "horizontal",
  height: 50
});

chart.set("scrollbarX", scrollbarX);

That creates a scrollbar with a standalone instance of an XY chart in it, accessible via scrollbar's chart property.

It's full on XYChart instance, which means that we'll need to configure it like any other XY chart:

  • Add axes.
  • Add series and their data.
var sbxAxis = scrollbarX.chart.xAxes.push(
  am5xy.DateAxis.new(root, {
    groupData: true,
    groupIntervals: [{ timeUnit: "year", count: 1 }],
    baseInterval: { timeUnit: "day", count: 1 },
    renderer: am5xy.AxisRendererX.new(root, {
      opposite: false,
      strokeOpacity: 0
    })
  })
);

var sbyAxis = scrollbarX.chart.yAxes.push(
  am5xy.ValueAxis.new(root, {
    renderer: am5xy.AxisRendererY.new(root, {})
  })
);

var sbseries = scrollbarX.chart.series.push(
  am5xy.LineSeries.new(root, {
    xAxis: sbxAxis,
    yAxis: sbyAxis,
    valueYField: "value",
    valueXField: "date"
  })
);
sbseries.data.setAll(data);
let sbxAxis = scrollbarX.chart.xAxes.push(
  am5xy.DateAxis.new(root, {
    groupData: true,
    groupIntervals: [{ timeUnit: "year", count: 1 }],
    baseInterval: { timeUnit: "day", count: 1 },
    renderer: am5xy.AxisRendererX.new(root, {
      opposite: false,
      strokeOpacity: 0
    })
  })
);

let sbyAxis = scrollbarX.chart.yAxes.push(
  am5xy.ValueAxis.new(root, {
    renderer: am5xy.AxisRendererY.new(root, {})
  })
);

let sbseries = scrollbarX.chart.series.push(
  am5xy.LineSeries.new(root, {
    xAxis: sbxAxis,
    yAxis: sbyAxis,
    valueYField: "value",
    valueXField: "date"
  })
);
sbseries.data.setAll(data);

The nice thing about this approach is that we can configure the output down to last bit, including dynamic data point grouping of the preview series, to control its granularity.

See the Pen
Pre-zooming date axis
by amCharts team (@amcharts)
on CodePen.0

Repositioning scrollbars

Normally, vertical scrollbar will be placed on chart's right, while horizontal one will be positioned on the top.

To put it another way, when you assign a Scrollbar instance to chart's scrollbarY setting, it is automatically assigned as a child of chart's rightAxesContainer, whereas assigning it to scrollbarX will put it into topAxesContainer.

Read more about build in XY chart containers in "Containers of an XY chart" tutorial.

Re-positioning scrollbars is as easy as moving them to some other container.

For example, the following code will move vertical scrollbar to the left of the chart, and horizontal one to bottom:

// Scrollbar X
var scrollbarX = am5.Scrollbar.new(root, {
  orientation: "horizontal"
});

chart.set("scrollbarX", scrollbarX);
chart.bottomAxesContainer.children.push(scrollbarX);

// Scrollbar Y
var scrollbarY = am5.Scrollbar.new(root, {
  orientation: "vertical"
});

chart.set("scrollbarY", scrollbarX);
chart.leftAxesContainer.children.push(scrollbarY);
// Scrollbar X
var scrollbarX = am5.Scrollbar.new(root, {
  orientation: "horizontal"
});

chart.set("scrollbarX", scrollbarX);
chart.bottomAxesContainer.children.push(scrollbarX);

// Scrollbar Y
var scrollbarY = am5.Scrollbar.new(root, {
  orientation: "vertical"
});

chart.set("scrollbarY", scrollbarX);
chart.leftAxesContainer.children.push(scrollbarY);

See the Pen
Scrollbar with chart preview
by amCharts team (@amcharts)
on CodePen.0

Related tutorials