Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

Excerpt

Sets or returns the minor unit of measurement of the axis, the gap between its minor gridlines and/or minor ticks marks.

Signature
C#
C#
<table class="diff-macro"><thead><tr><th class="diff-macro-title">unmigrated-wiki-markup</th></tr></thead><tbody><tr><td class="diff-macro-body"><pre>
public double MinorIncrement{ get; set; }
</pre></td></tr></tbody></table>
Signature
vb.net
vb.net
Public <p>Public Property MinorIncrement() As Double</p>Double
Remarks

When creating a new chart, or reading a chart in from a file where the minor increment value is not specified, the minor increment value is automatic, which is represented with -1.
This property can be set to any value greater than or equal to zero. If you set this to a negative value, it will set the minor increment of the axis to auto.

If ValueAxis.UseLogarithmicScale is turned on, then this property represent the power of the minor unit in base 10 (or whatever base you've manually set). For instance, if this value is set to 2. Then with UseLogarithmicScale turned off, the resulting file will have a minor unit of 2. If UseLogarithmicScale is turned on, then the resulting file will have a minor unit of 100 (10 2).