Version 24.2 (latest)

Configuring Axis Labels

The igFinancialChart control allows you full control over configuring, formatting and styling the labels displayed along the x-axis and y-axis on your chart. By default, you do not need to explicitly set the labels.

In this topic

This topic contains the following sections:

Label Settings

In the igFinancialChart control, you can change the rotation angle, margin, horizontal/vertical alignment, opacity, padding and visibility, of the x-axis and y-axis labels using the following properties:

Property Name Property Type Description

number

Determines angle rotation of x-axis or y-axis labels

enumeration

Determines horizontal alignment of the x-axis or y-axis labels

enumeration

Determines vertical alignment of the x-axis or y-axis labels

string

Determines whether or not x-axis or y-axis labels are visible

number

Determines the left margin applied to each x-axis or y-axis label

number

Determines the top margin applied to each x-axis or y-axis label

number

Determines the right margin applied to each x-axis or y-axis label

number

Determines the bottom margin applied to each x-axis or y-axis label

Styling

The look and feel of the financial chart’s x-axis and y-axis labels can be styled in many aspects, the main of which are applying different font styles such as font type and colors to the labels. This can be achieved through the following properties:

Property Name Property Type Description

string

Determines the font family to be used for the x-axis or y-axis labels

string

Determines the text color of the x-axis or y-axis labels

Abbreviating Large Numbers

The igFinancialChart control allows you to specify if the y-axis labels should display abbreviated numeric values on the y-axis. For label values that may appear too long, you can set YAxisAbbreviateLargeNumbers to true to enable this feature. This is set to true by default.

Code Snippet

The following code example shows how to style labels on the x-axis using date formatting and other style properties:

In JavaScript:

$(".selector").igFinancialChart({
    dataSource: data,
    xAxisLabelLeftMargin: 14,
    xAxisLabelTextColor: "Green",
    yAxisLabelTextColor: "Blue"
});

The following screenshot demonstrates the igFinancialChart control with the axis labels formatted and styled.

financialchart jquery axis labels.png

View on GitHub