User (Legacy) Posted August 20, 2003 Report Share Posted August 20, 2003 Hello, Anyone can help me on setting borders between points in 2D pie chart? I tried to use Chart.Point[i].Border = true; Chart.Point[i].BorderEffect = BorderEffect.None; Chart.Point[i].BorderColor = Color.Black; Chart.Point[i].LineWidth = 2; but only the outside border was set. Any thoughts? Thanks, Jason Link to comment Share on other sites More sharing options...
Software FX Posted August 21, 2003 Report Share Posted August 21, 2003 You don't need to set per point attributes. To get internal borders you need to turn on the ChartType.InternalBorder flag. Also note that this flag is honored in other chart types (e.g. in an area chart it means vertical lines are drawn in all points). chart1.Gallery = Gallery.Pie; chart1.Border = true; chart1.Chart3D = false; chart1.TypeMask |= ChartType.InternalBorder; // Uncomment these lines to get a black border around all slices chart1.BorderColor = Color.Black; chart1.BorderEffect = BorderEffect.None; -- Regards, JC Software FX Support "Jason Xu" <jason@riginc.com> wrote in message news:0%234GIz0ZDHA.2864@WEBSERVER1... > Hello, > Anyone can help me on setting borders between points in 2D pie chart? > > I tried to use > > Chart.Point[i].Border = true; > Chart.Point[i].BorderEffect = BorderEffect.None; > Chart.Point[i].BorderColor = Color.Black; > Chart.Point[i].LineWidth = 2; > > but only the outside border was set. > Any thoughts? > > Thanks, > > Jason > > Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.