Labeling Axes

When creating a chart, you want to tell the viewer what data they are viewing. To do this, you need to label the axis.

Scale Title Configuration

Namespace: options.scales[scaleId].title, it defines options for the scale title. Note that this only applies to cartesian axes.

NameTypeDefaultDescription
displaybooleanfalseIf true, display the axis title.
alignstring‘center’Alignment of the axis title. Possible options are ‘start’, ‘center’ and ‘end’
textstring|string[]‘’The text for the title. (i.e. “# of People” or “Response Choices”).
colorColorChart.defaults.colorColor of label.
fontFontChart.defaults.fontSee Fonts
paddingPadding4Padding to apply around scale labels. Only top and bottom are implemented.

Creating Custom Tick Formats

It is also common to want to change the tick marks to include information about the data type. For example, adding a dollar sign (‘$’). To do this, you need to override the ticks.callback method in the axis configuration.

The method receiver 3 arguments:

  • value - the tick value in the internal data format of the associated scale.
  • index - the tick index in the ticks array.
  • ticks - the array containing all of the tick objects.

The call to the method is scoped to the scale. this inside the method is the scale object.

If the callback returns null or undefined the associated grid line will be hidden.

TIP

The category axis, which is the default x-axis for line and bar charts, uses the index as internal data format. For accessing the label, use this.getLabelForValue(value). API: getLabelForValue

In the following example, every label of the Y-axis would be displayed with a dollar sign at the front.

  1. var chart = new Chart(ctx, {
  2. type: 'line',
  3. data: data,
  4. options: {
  5. scales: {
  6. y: {
  7. ticks: {
  8. // Include a dollar sign in the ticks
  9. callback: function(value, index, values) {
  10. return '$' + value;
  11. }
  12. }
  13. }
  14. }
  15. }
  16. });

Related samples: