Description
I've created my first chart after a day testing. It's a combi chart (2 bar series , 1 line serie)
After updating the datasource from my controller, the bar series always get drawn and updated. However the line does not.
The line chart gets updated/drawn random( 50% visible, 50% not visible)
Update:
vm.myDataSource.dataset[2].data = [{"value":"16610.88"},{"value":"16610.88"},{"value":"16610.88"},{"value":"16610.88"},{"value":"41524.72"},{"value":"1.66"},{"value":"1.66"},{"value":"1.66"},{"value":"1.66"},{"value":"1.66"},{"value":"-8302.95"},{"value":"-8302.95"}];
I print my bar data after every update : console.log(JSON.stringify(vm.myDataSource.dataset[2].data));
It shows the exact data from the dataset every time but the line not always get drawn. Any hints or clue's would be appreciated. Addionatinol info needed plz let me know.
(Not an angular expert )