Completed
Last Updated: 18 Jul 2013 08:29 by ADMIN
ADMIN
Stefan
Created on: 18 Jul 2013 08:29
Category: ChartView
Type: Bug Report
0
FIX. RadChartView - when using grid and setting colors for its cells/borders, the pixel before the last one is not colored
To reproduce: 
AddChartView();
            radChartView1.ShowGrid = true;

            CartesianGrid grid = ((CartesianGrid)radChartView1.GetArea<CartesianArea>().Grid);
            grid.DrawVerticalFills = true;
            grid.AlternatingHorizontalColor = false;
            grid.AlternatingVerticalColor = false;
            grid.BackColor = Color.Red;
            grid.ForeColor = Color.Blue;
            grid.BorderDashStyle = System.Drawing.Drawing2D.DashStyle.Solid;
0 comments