Theme for data visualisation controls

Hi - is there any way to customize the colours of the Doughnut chart? SfAccumulationChart? 

3 Replies 1 reply marked as answer

SM Srihari Muthukaruppan Syncfusion Team November 17, 2020 09:04 AM UTC

Hi Laurence, 
 
We have analysed your query. From that, we would like to let you know that we can achieve your requirement by using the "pointColorMapping" property in the series of the chart. Based on your requirement we have prepared a sample for your reference. Please find the below sample, code snippet, and screenshot. 
  
  
Code Snippet: 
 // add your additional code here 
<SfAccumulationChart Title="Mobile Browser Statistics"> 
    <AccumulationChartEvents Loaded="@LoadHandler"></AccumulationChartEvents> 
    <AccumulationChartSeriesCollection> 
        <AccumulationChartSeries PointColorMapping="color" DataSource="@StatisticsDetails" XName="Browser" YName="Users" Name="Browser"> 
        </AccumulationChartSeries> 
    </AccumulationChartSeriesCollection> 
    <AccumulationChartLegendSettings Visible="true"></AccumulationChartLegendSettings> 
</SfAccumulationChart> 
@code{ 
    public class Statistics 
    { 
        public string Browser; 
        public double Users; 
        public string color; 
    } 
 
    public List<Statistics> StatisticsDetails = new List<Statistics> 
    { 
        new Statistics { Browser = "Chrome", Users = 37, color="#E94649"  }, 
        new Statistics { Browser = "UC Browser", Users = 17, color="#F6B53F"  }, 
        new Statistics { Browser = "iPhone", Users = 19, color="#6FAAB0"  }, 
        new Statistics { Browser = "Others", Users = 4, color="#C4C24A"   } 
    }; 
} 
  
Screenshot: 
 
 
Let us know if you have any concerns. 
 
Regards, 
Srihari M

Marked as answer

LA Laurence November 17, 2020 01:42 PM UTC

Thanks you so much for the quick response


SM Srihari Muthukaruppan Syncfusion Team November 18, 2020 05:22 AM UTC

Hi Laurence,  
 
Most welcome. Kindly get in touch with us, if you requires further assistance. We are always happy in assisting you.   
   
Thanks,   
Srihari M 


Loader.
Up arrow icon