File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -455,6 +455,9 @@ chart.PrimaryValueAxis.MaximumValue = 14.0;
455455
456456//Number format for axis
457457chart.PrimaryValueAxis.NumberFormat = "0.0";
458+
459+ //Display unit for axis
460+ chart.PrimaryValueAxis.DisplayUnit = ExcelChartDisplayUnit.Hundreds;
458461{% endhighlight %}
459462
460463{% highlight c# tabtitle="C# [ Windows-specific] " %}
@@ -469,6 +472,9 @@ chart.PrimaryValueAxis.MaximumValue = 14.0;
469472
470473//Number format for axis
471474chart.PrimaryValueAxis.NumberFormat = "0.0";
475+
476+ //Display unit for axis
477+ chart.PrimaryValueAxis.DisplayUnit = ExcelChartDisplayUnit.Hundreds;
472478{% endhighlight %}
473479
474480{% highlight vb.net tabtitle="VB.NET [ Windows-specific] " %}
@@ -483,6 +489,9 @@ chart.PrimaryValueAxis.MaximumValue = 14.0
483489
484490'Number format for axis
485491chart.PrimaryValueAxis.NumberFormat = "0.0"
492+
493+ 'Display unit for axis
494+ chart.PrimaryValueAxis.DisplayUnit = ExcelChartDisplayUnit.Hundreds
486495{% endhighlight %}
487496{% endtabs %}
488497
You can’t perform that action at this time.
0 commit comments