Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
510
Populate WinChart PieCartd3D
posted

I would like to use a PieChart to display percentage of pinching reasons from a data set.

The reason and the number of counted stems are in two different columns in the data set.

From the same pinching reason multiple counting can be in the same data set.

I would like to have them accumulated counting of each reason displayed in the pie chart.

Now the chart shows the counting percentage of each individual record as pie value.

How to adjust this?

Peter

Parents
No Data
Reply
  • 21795
    Offline posted

    Hello Peter,

    UltraChart control helps developers to visualize data as nice 2D or 3D charts. What UltraChart will display depends on the data source the developer will provide it. Speaking of Pie Chart you should provide a data source containing at least one numeric column. Then Pie Chart will visualize each row of data source provided as single pie depending on its numeric value. More about Pie Chart you may find in our online documentation in this article “Working with 2D Pie Chart Data”. Attached is a small sample showing how you can assign data to UltraChart.

    In your case it seems that you need to summarize some data you have. Note that you should do this by yourself. UltraChart cannot summarize data from several data table and create a data source by itself. So summarize your data and assign the result as data source to your chart. Then UltraChart will visualize the result you passed through the data source.

    Please let me know if you have any further questions on this matter.

    ULtraChartPieChart.zip
Children