SetActive
Set data plot to be the ActiveCurve.
int SetActive( int nMarkerLeft = -1, int nMarkerRight = -1 )
previous ActiveCurve index in layer.
EX1
void DataPlot_SetActive_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) { DataPlot dp; dp = gl.DataPlots(0); dp.SetActive(2,5); } }
origin.h