CPF/CPF.ReoGrid/Chart/AxisDataInfo.cs

24 lines
398 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
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; }
}
}