"setSeriesFillColor"
Specifies the fill color of a series.
Synopsis
void shape.setSeriesFillColor(int series, string color)
Parameters
Parameter | Description |
---|---|
series | number of the series |
color | the color, which is set |
Description
Specifies the fill color of a series. Only static colors are allowed.
Example
In this example the fillcolor was set to light green.
main()
{
dyn_float one;
one[1] = 123;
one[2] = 456;
this.addSeries(one);
this.setSeriesFillColor(0, "{134,255,138}");
}