24 lines
398 B
C#
24 lines
398 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace CPF.ReoGrid.Chart
|
|||
|
{
|
|||
|
public class AxisDataInfo
|
|||
|
{
|
|||
|
public int Levels { get; set; }
|
|||
|
|
|||
|
public int Scaler { get; set; }
|
|||
|
|
|||
|
public double Minimum { get; set; }
|
|||
|
|
|||
|
public double Maximum { get; set; }
|
|||
|
|
|||
|
public bool AutoMinimum { get; set; }
|
|||
|
|
|||
|
public bool AutoMaximum { get; set; }
|
|||
|
|
|||
|
public double LargeStride { get; set; }
|
|||
|
|
|||
|
public double SmallStride { get; set; }
|
|||
|
}
|
|||
|
}
|