Hi,
I have some data see pic:
But if I create a line chart the Y-Axis labels are not the millions
I have not found any way to control it
My code for chart:
LineChart::create(array(
"title" => "Moving average chart",
"dataSource" => $this->dataStore('movingAverage'),
"columns" => array(
"date",
"movingAverage" => array(
"label" => "Moving Average",
"type" => "number",
),
),
"options" => array(
"curveType" => "function"
)
));