You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unable to change colour of graphs from the default one by passing the colour array as options.
Started working after adding color:config.color in this block. Can you please add this option and push an update for everyone to use?
Unable to change colour of graphs from the default one by passing the colour array as options.
Started working after adding color:config.color in this block. Can you please add this option and push an update for everyone to use?
var options = {
title: util.getTitle(data, config, type),
tooltip: util.getTooltip(data, config, type),
legend: util.getLegend(data, config, type),
toolbox: angular.extend({ show: false }, angular.isObject(config.toolbox) ? config.toolbox : {}),
xAxis: util.isHeatmapChart(type) ? config.xAxis : [ angular.extend(xAxis, util.getAxisTicks(data, config, type)) ],
yAxis: util.isHeatmapChart(type) ? config.yAxis : [ yAxis ],
graphic: config.graphic && (angular.isObject(config.graphic) || angular.isArray(config.graphic)) ? config.graphic : [],
series: util.getSeries(data, config, type),
visualMap: config.visualMap ? config.visualMap : null,
color:config.color
};
The text was updated successfully, but these errors were encountered: