$(".selector").igFinancialChart({
dataSource: data,
yAxisIsLogarithmic: true,
yAxisLogarithmBase: 4
});
The igFinancialChart control allows you to choose if the data in your charts is mapped logarithmically along the y-axis.
This topic contains the following sections:
In the igFinancialChart control, you can modify the logarithmic display behavior of the y-axis with these options:
The following code example shows how to set the yAxisIsLogarithmic and yAxisLogarithmBase options:
In JavaScript:
$(".selector").igFinancialChart({
dataSource: data,
yAxisIsLogarithmic: true,
yAxisLogarithmBase: 4
});
View on GitHub