Using a combo chart from apexcharts, the y-axis is showing 12 zeroes after the decimal place even though they are whole numbers:
Here is my code:
$columns = array(
"Date" => [
"categoryType" => "datetime"
],
"Average" => [
"chartType" => "line"
],
"Count" => [
"chartType" => "line"
]
);
ComboChart::create(array(
"title" => ' Overall Summary',
"dataSource" => $this->src('base')->pipe(new Filter(array(array('hrID', '=', $hrID))))->pipe(new Group(["by" => "Date,hrID", "sum" => "Total", "avg" => "Average", "sum" => "Count"])),
"columns" => $columns,
"height" => "300px",
"width" => "100%"
));
Am I doing something wrong or is this a bug?