Ticket T304330
Visible to All Users

How to exploid all pies in a chart?

created 9 years ago

Hello,

I want to draw a chart with exploiding points. I have see your demos, but it seems not possible to exploid all pies in the exact same way, like this one: http://4.bp.blogspot.com/-8t3Zz0xu7o4/VM8rs1PIwWI/AAAAAAAAB1A/BMNM8uOfG74/s1600/personal%2Bpie%2Bchart.png

How could I draw a bar chart like this one? Thanks in advance for your answer.
Guido

Answers approved by DevExpress Support

created 9 years ago

To represent chart in the required manner set the PieSeriesViewBase.ExplodeMode Property to All.

C#
PieSeriesView pieView = WebChartControl1.Series[0].View as PieSeriesView; pieView.ExplodeMode = PieExplodeMode.All;

To colorize all points in a bar chart enable the BarSeriesView.ColorEach Property.

C#
BarSeriesView barView = WebChartControl1.Series[0].View as BarSeriesView; barView.ColorEach = true;
    Show previous comments (6)
    DevExpress Support Team 9 years ago

      No, it is not possible. The border is drawn above the pie segments and causes the look similar to the required one. If you set border color to transparent, you will not see the difference.

      GB GB
      Guido Baumhoff 9 years ago

        Thank you Constant :)

        DevExpress Support Team 9 years ago

          You are welcome, Guido

          Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

          Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.