Hide Comments
Hide Comments

Comments (0)

Specifies the minimum amount, in chart axis values, that the major grid marks and their labels should use. This value is usually 0 to let the chart axis choose the stepping increment. For example, if the chart axis would choose an increment of 10, e.g., 0, 10, 20, 30, etc, for the major grid, by setting this property to 25 you would force the stepping increment to be 0, 25, 50, etc. Note that setting this property to 5 would have no effect on the stepping increment in the above case.

Namespace: RSChartPanel

expandingSyntax

Delphi

published
  property MinStepIncrement: TRSChartValueType read FMinStepIncrement write SetMinStepIncrement;
 

Property Value

Type: TRSChartValueType

expandingExamples

The following code sets up an axis for a temperature:

Delphi

begin
   RSChartPanel1.BottomAxis.Title.Text := 'Temperature (C)';
   RSChartPanel1.BottomAxis.Minimum := 0;
   RSChartPanel1.BottomAxis.Maximum := 100;
   RSChartPanel1.BottomAxis.MinStepIncrement := 5;
   RSChartPanel1.BottomAxis.Format := '##.00 C';
   RSChartPanel1.BottomAxis.LabelStyle := alsValue;
   RSChartPanel1.BottomAxis.Options := [axShowLabels, axShowGrid, axShowTitle];
 end;

expandingSee Also

Comments (0)

RiverSoftAVG Charting Component Suite (RCCS) © 2005-2015, Thomas G. Grubb