Update the plot type of data plot. If this data plot is grouped with other data plots, the others will be update too.
bool update_plot_type( DataPlot & dp, int nType )
true if success
EX1
//Before run this example, a graphlayer must be active in the project void update_plot_type_ex1() { GraphLayer gl = Project.ActiveLayer(); if(!gl) return; DataPlot dp = gl.DataPlots(); update_plot_type(dp, IDM_PLOT_SCATTER); }
origin.h