Hello ,
I want to customize the colors of Pie chart, I found on the web a pre excutation function to change Bar char colors and i want to do the same, according to some intervales the colors change.
Can you help with this ?
Thanks in advance
Hello ,
I want to customize the colors of Pie chart, I found on the web a pre excutation function to change Bar char colors and i want to do the same, according to some intervales the colors change.
Can you help with this ?
Thanks in advance
Try this
function changePie(e){
var cccOptions = this.chartDefinition;
var eps = Dashboards.propertiesArrayToObject(cccOptions.extensionPoints);
var analizar = e.resultset;
var valor = analizar[0][2];
if(valor >= 100){
this.chartDefinition.colors = ['#727176', '#288f42']; //gris y verde
}
else
if(valor < 100 && valor >= 95){
this.chartDefinition.colors = ['#727176', '#d0cb22']; // gris y amarillo
}
else{
this.chartDefinition.colors = ['#727176', '#a82522']; //gris y rojo
}
}
Copyright © 2005 - 2019 Hitachi Vantara Corporation. All Rights Reserved.