示例#1
0
 public AvrChartProperties()
 {
     Title                  = new TitleProperties();
     XAxis                  = new XAxisProperties();
     YAxes                  = new List <YAxisProperties>();
     Series                 = new List <SeriesProperties>();
     LegendVisibility       = true;
     SeriesLabelsVisibility = true;
 }
示例#2
0
        public AxisProperties()
        {
            Title = new TitleProperties();

            LineColor                = Color.Gray;
            LineWidth                = 2;
            GridLinesColor           = Color.Gray;
            GridLinesStyle           = 0; //Solid
            GridLinesVisibility      = false;
            ValueLabelAngle          = 20;
            ValueLabelFont           = new FontProperties();
            ValueLabelStaggeredStyle = false;

            TickmarkMinorCount = 5;
            RangeReverse       = false;
            //TODO Range Max  Range Min
        }