Browse Source

S curve color

pull/1/head
Wahyu Ramadhan 2 years ago
parent
commit
6278f7791c
  1. 8
      view-mode/function/overlaySCurve.js

8
view-mode/function/overlaySCurve.js

@ -112,16 +112,16 @@ var lineOverlay = overlayControl.addOverlay(function(container) {
datasets: [
{
label: "Planned progress",
backgroundColor: "#001eff",
borderColor: "#001eff",
backgroundColor: "#0000cc",
borderColor: "#0000cc",
data: values.planned,
fill: false,
cubicInterpolationMode: 'monotone'
},
{
label: "Real progress",
backgroundColor: "#ff5454",
borderColor: "#ff5454",
backgroundColor: "#006600",
borderColor: "#006600",
data: values.real,
fill: false,
cubicInterpolationMode: 'monotone'

Loading…
Cancel
Save