访问有关Viz文档的网站https://sapui5.hana.ondemand.com/docs/vizdocs/index.html。
PFB解决方案。
var oVizFrame = new sap.viz.ui5.controls.VizFrame(this._constants.vizFrames.config);
oVizFrame.setVizProperties({
plotArea: {
line: {
lineRenderer: function(oevent) {
if (oevent.ctx.measureNames === "Capacity_Utilization_Percent") {
oevent.graphic.color = "#fac364";
} else {
oevent.graphic.color = "#d998cb";
}
}
}
}
});