yangyin
2024-08-21 04e1d0a290ff76bf623bd9de075b350b8b77ba25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
namespace Yw.WinFrmUI.Phart
{
    public class XtrAxis:XtrBase
    {  
        /// <summary>
        /// 标题
        /// </summary>
        public XtrTitle Title { get; set; }
         
        /// <summary>
        /// 值类型
        /// </summary>
        public int ValueType { get; set; }
 
        /// <summary>
        /// 最小值
        /// </summary>
        public object MinValue { get; set; }
 
        /// <summary>
        /// 最大值
        /// </summary>
        public object MaxValue { get; set; }
 
        /// <summary>
        /// 间隔值
        /// </summary>
        public object Interval { get; set; }
        
        /// <summary>
        /// 网格线
        /// </summary> 
        public XtrGridLine GridLine { get; set; }
 
        /// <summary>
        /// 是否自动生成网格线
        /// </summary>
        public bool AutoGrid { get; set; }
         
        /// <summary>
        /// 是否显示网格线
        /// </summary>
        public bool ShowGrid { get; set; }
 
    }
}