Axis labels provide clear identification and context for the data represented on each axis in a chart.
Collision Avoidance Copy
AG Charts has a number of methods to avoid axis label collisions.
In this example:
- Use the grab handle in the bottom right of the example to resize the chart. Observe how the labels behave with the different options applied.
- The first row of buttons demonstrate all the rotation options.
- The second row of buttons allows changing the length of the labels. This more easily shows the skipping behaviour.
- The third row of buttons allows disabling the collision avoidance altogether.
Collision avoidance is enabled by default, to disable set label.avoidCollisions
to false.
{
label: {
avoidCollisions: false,
}
}
Rotation Copy
Rotating axis labels allows fitting more labels into a smaller area, at the expense of readability.
Three rotation options are available:
- No rotation.
- Fixed rotation - labels are always rotated by the amount specified in the
rotation
property. - Automatic rotation - labels are rotated if any label will be wider than the gap between ticks.
Automatic rotation can be enabled or disabled using the autoRotate
property. It is also possible to specify a rotation angle for the automatic rotation via the autoRotateAngle
property.
Category axes have autoRotate
enabled by default with a default autoRotateAngle
of 335
.
Skipping Copy
Label skipping is performed automatically when there is a high likelihood of collisions between labels. Labels that would collide are not displayed.
A collision is defined as labels coming within 10 pixels of each other. This minimum gap allowed between the axis labels before skipping can be configured using the label.minSpacing
property.
{
label: {
minSpacing: 20,
}
}
If autoRotate
is enabled, rotation will be attempted before label skipping applies.
Label Text Formatting Copy
The label text is taken directly from the data. There are two ways to format this text, for example to show units next to values or to display number values to a certain precision.
This section discusses formatting the label text. See the Axis Intervals section to learn how to configure which labels are shown.
Formatter Copy
The label.formatter
callback allows maximum flexibility for controlling what appears in the labels.
{
label: {
formatter: function(params) {
return (params.value * 100) + '%';
}
}
}
In the above example:
- The number axis uses a formatter to multiply by 100 and append
'%'
to all values. - The category axis uses a formatter to add
'=='
around the 'Windows' label only.
The formatter function receives a single params
object which contains:
- The raw
value
of the label (without any default formatting applied). - The
index
of the label in the data array. - The number of
fractionDigits
, if the value is a number.
It is called for each label and should return a string.
Format Copy
The label.format
property takes a static string representing a time or number format. This has less flexibility than the formatter, but can be serialised.
{
label: {
format: "%b %Y",
}
}
In the above example:
- The time axis uses a format to display the short month name and full year for all values.
- The number axis uses a format to prepend a
'$'
and use 2 decimal places for all values. Shorter numbers are padding with'0'
.
The syntax used in the format strings depends on the axis type.
The format string for time
axis labels may contain the following directives, which reflect Python's strftime specification.
%a
- Abbreviated weekday name.*%A
- Full weekday name.*%b
- Abbreviated month name.*%B
- Full month name.*%c
- Locale's date and time, such as%x
,%X
.*%d
- Zero-padded day of the month as a decimal number[01,31]
.%e
- Space-padded day of the month as a decimal number[ 1,31]
; equivalent to%_d
.%f
- Microseconds as a decimal number[000000,999999]
.%H
- Hour (24-hour clock) as a decimal number[00,23]
.%I
- Hour (12-hour clock) as a decimal number[01,12]
.%j
- Day of the year as a decimal number[001,366]
.%m
- Month as a decimal number[01,12]
.%M
- Minute as a decimal number[00,59]
.%L
- Milliseconds as a decimal number[000,999]
.%p
- AM or PM.*%Q
- Milliseconds since UNIX epoch.%s
- Seconds since UNIX epoch.%S
- Second as a decimal number[00,61]
.%u
- Monday-based (ISO) weekday as a decimal number[1,7]
.%U
- Sunday-based week of the year as a decimal number[00,53]
. Days preceding the first Sunday in the year in week 0%V
- ISO 8601 week number of the year as a decimal number[01, 53]
. Week 1 is the first week where four or more days fall within the new year.%w
- Sunday-based weekday as a decimal number[0,6]
.%W
- Monday-based week of the year as a decimal number[00,53]
. Days preceding the first Monday in the year are in week 0.%x
- Locale's date, such as%-m/%-d/%Y
.*%X
- Locale's time, such as%-I:%M:%S %p
.*%y
- Two-digit year as a decimal number[00,99]
.%Y
- Full year as a decimal number.%Z
- Time zone offset, such as-0700
,-07:00
,-07
, orZ
.%%
- A literal percent sign (%).
Directives marked with an asterisk (*) may be affected by the locale definition.
The %
sign indicating a directive may be immediately followed by a padding modifier, otherwise no padding will be applied.
0
- zero-padding._
- space-padding.
Next Up Copy
Continue to the next section to learn about Grid Lines.