Creating Custom Chart Palettes
Environment
Version | Product | Author |
---|---|---|
10.0.0 | Chart for .NET MAUI | Dobrinka Yordanova |
Description
I want to change the default colors of the bar series in the CartesianChart. How can I achieve this?
This knowledge base article also answers the following questions:
- How can I use custom colors in the Telerik UI for .NET MAUI CartesianChart?
- How can I change the color on the CartesianChart
BarSeries
?
Solution
The Chart supports the following default set of colors for displaying its data points:
#0078D4
#EA005E
#60CCFE
#0093F9
#00B7C3
#FFB900
#C239B3
#6B69D6
To modify the default built-in colors, implement a custom palette, as demonstrated in the following scenario:
1. Create a sample DataModel
:
2. Define the ViewModel
class:
3. Define the RadCartesianChart
in XAML:
4. Add the telerik
namespace:
The following image shows the end result of the suggested implementation.