SetColor
Set the color of the dataplot (line, symbol).
BOOL SetColor( int nColor, BOOL bRepaint = FALSE, BOOL bUndo = false )
TRUE for success, otherwise FALSE.
EX1
void DataPlot_SetColor_ex1() { Worksheet wks; wks.Create("origin"); Dataset ds1(wks,0); Dataset ds2(wks,1); ds1.Data(1,20,1); ds2.Normal(20); GraphPage gp; gp.Create("origin"); GraphLayer gl(gp.GetName(), 0); gl.AddPlot(wks); if(gl) { // Get the first data plot in the layer: DataPlot dp = gl.DataPlots(0); // Set the color to red and repaint: dp.SetColor(1, TRUE); } }
origin.h