c# - What is the easiest way to get ZedGraph to use scientific notation instead of engineering notation? -
zedgraph likes use engineering notation axes, e.g. 300*10^3 instead of scientific notation, e.g. 3*10^5. easiest way change this?
i couldn't figure out automatic way this, it's 1 line of code manually:
zedgraph1.graphpane.yaxis.scale.mag = (int)math.floor(math.log10(zedgraph1.graphpane.yaxis.scale.max));
Comments
Post a Comment