$(".selector").igFinancialChart({
dataSource: data,
xAxisMode: "ordinal",
yAxisMode: "percentChange"
});
The igFinancialChart control allows you to choose how the data in your charts is represented along the x-axis and y-axis.
In the igFinancialChart control, you can change the modes of the axes with these properties:
The following code example shows how to change the xAxisMode and yAxisMode:
In JavaScript:
$(".selector").igFinancialChart({
dataSource: data,
xAxisMode: "ordinal",
yAxisMode: "percentChange"
});
View on GitHub