示例#1
0
        public PieChart()
        {
            Items       = new ChartItemsCollection();
            Title       = string.Empty;
            BorderWidth = 1;

            Radius = 160;
            Width  = 200;

            _backgroundColor = Color.White;
            _borderColor     = Color.Gainsboro;
            _legendFontSize  = 8;
            _legendFontStyle = "Tahoma";
        }
示例#2
0
文件: PieChart.cs 项目: 0anion0/IBN
        public PieChart()
        {
            Items = new ChartItemsCollection();
            Title = string.Empty;
            BorderWidth = 1;

            Radius = 160;
            Width = 200;

            _backgroundColor = Color.White;
            _borderColor = Color.Gainsboro;
            _legendFontSize = 8;
            _legendFontStyle = "Tahoma";
        }
示例#3
0
        public BarChart()
        {
            Items       = new ChartItemsCollection();
            Title       = string.Empty;
            BorderWidth = 1;
            Width       = 400;

            Height = 200;
            Sort   = true;

            _backgroundColor = Color.White;
            _borderColor     = Color.Gainsboro;
            _legendFontSize  = 8;
            _legendFontStyle = "Tahoma";
        }
示例#4
0
文件: BarChart.cs 项目: 0anion0/IBN
        public BarChart()
        {
            Items = new ChartItemsCollection();
            Title = string.Empty;
            BorderWidth = 1;
            Width = 400;

            Height = 200;
            Sort = true;

            _backgroundColor = Color.White;
            _borderColor = Color.Gainsboro;
            _legendFontSize = 8;
            _legendFontStyle = "Tahoma";
        }