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

Popular posts from this blog

PySide and Qt Properties: Connecting signals from Python to QML -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

scala - 'wrong top statement declaration' when using slick in IntelliJ -