Skip to main content

Charts for .NET MAUI. Series Point Colorizers

  • 11 minutes to read

A series point colorizer helps you color-code series points to enhance data visualization. Use a series point colorizer to specify one or more conditions based on which a chart applies colors to series points. For example, point colors indicate the Happy Planet Index (HPI) on the following chart:

Colorizer

The ChartView component ships with point and value range colorizers that use predefined algorithms to select point colors. You can also implement a custom colorizer.

Point Colorizer

The predefined point colorizer uses colors from the default or custom palette to paint series points. Colors apply in the same order they appear in the palette.

To enable a point colorizer for a series, assign a ColorEachPointColorizer object to the series’s PointColorizer property.

Default Colors

The colorizer applies 7 default colors to points unless you explicitly specify the palette.

ColorEachPointColorizer - Default

<dxc:PointSeries>
    <!-- Series Data -->
    <dxc:PointSeries.PointColorizer>
        <dxc:ColorEachPointColorizer/>
    </dxc:PointSeries.PointColorizer>
</dxc:PointSeries>

Custom Colors

Use the ColorEachPointColorizer.Palette property to specify custom colors.

ColorEachPointColorizer - Custom Palette

<dxc:PointSeries>
    <!-- Series Data -->
    <dxc:PointSeries.PointColorizer>
        <dxc:ColorEachPointColorizer>
            <dxc:ColorEachPointColorizer.Palette>
                <x:Array Type="{x:Type Color}">
                    <Color>#006EC6</Color>
                    <Color>#18ce9a</Color>
                    <Color>#009ad6</Color>
                    <Color>#79cb5d</Color>
                    <Color>#0ed2dc</Color>
                    <Color>#71a9dd</Color>
                    <Color>#447238</Color>
                    <Color>#12898e</Color>
                </x:Array>
            </dxc:ColorEachPointColorizer.Palette>
        </dxc:ColorEachPointColorizer>
    </dxc:PointSeries.PointColorizer>
</dxc:PointSeries>

View Example: Predefined Point Colorizer

Custom Point Colorizers

The ChartView component can color series points based on point values/arguments or values in a specific data source field.

The table below lists supported custom colorizers. Create a class that implements a custom colorizer interface and assign an instance of this class to the series’s PointColorizer property.

Series Type Colorizer Interface Colorizer Description
Area, RangeArea, Point, Bar, and Line ICustomPointColorizer The GetColor method’s info parameter of the ColoredPointInfo type contains information about the processed series point.
RangeBar IRangeCustomPointColorizer The GetColor method’s info parameter of the ColoredRangePointInfo type contains information about the processed series point.
StackedArea and StackedBar IStackedCustomPointColorizer The GetColor method’s info parameter of the ColoredStackedPointInfo type contains information about the processed series point.
Bubble IWeightedCustomPointColorizer The GetColor method’s info parameter of the ColoredWeightedPointInfo type contains information about the processed series point.
All series, except for financial and pie series IIndexBasedCustomPointColorizer The GetColor method’s pointIndex parameter specifies the data source index of the processed series point. If data aggregation is enabled, only the first point’s index is passed.

Color Points by Their Arguments

In this example, a bar chart displays monthly values colored based on the season.

Custom Point Colorizer

View Example: Color Points by Their Arguments

<ContentPage ...
             xmlns:dxc="clr-namespace:DevExpress.Maui.Charts;assembly=DevExpress.Maui.Charts"
             xmlns:local="clr-namespace:ColorizerExample">
    <ContentPage.BindingContext>
        <local:ViewModel/>
    </ContentPage.BindingContext>
    <dxc:ChartView>
        <dxc:ChartView.Series>
            <dxc:BarSeries PointColorizer="{local:CustomColorizer}">
                <!-- Bind the series to the data source. -->
                <dxc:BarSeries.Data>
                    <dxc:SeriesDataAdapter DataSource="{Binding Data}"
                                           ArgumentDataMember="Argument">
                        <dxc:ValueDataMember Member="Value" Type="Value"/>
                    </dxc:SeriesDataAdapter>
                </dxc:BarSeries.Data>
            </dxc:BarSeries>
        </dxc:ChartView.Series>
        <dxc:ChartView.AxisX>
            <dxc:DateTimeAxisX MeasureUnit="Month"/>  
        </dxc:ChartView.AxisX>
    </dxc:ChartView>
</ContentPage>
using DevExpress.Maui.Charts;
// ...

public class ViewModel {
    public List<DataItem> Data { get; }

    public ViewModel() {
        Data = new List<DataItem>() {
            new DataItem() { Argument = new DateTime(2020, 1, 1), Value = 3 },
            new DataItem() { Argument = new DateTime(2020, 2, 1), Value = 5 },
            new DataItem() { Argument = new DateTime(2020, 3, 1), Value = 7 },
            new DataItem() { Argument = new DateTime(2020, 4, 1), Value = 2 },
            new DataItem() { Argument = new DateTime(2020, 5, 1), Value = 6 },
            new DataItem() { Argument = new DateTime(2020, 6, 1), Value = 4 },
            new DataItem() { Argument = new DateTime(2020, 7, 1), Value = 1 },
            new DataItem() { Argument = new DateTime(2020, 8, 1), Value = 8 },
            new DataItem() { Argument = new DateTime(2020, 9, 1), Value = 3 },
            new DataItem() { Argument = new DateTime(2020, 10, 1), Value = 9 },
            new DataItem() { Argument = new DateTime(2020, 11, 1), Value = 4 },
            new DataItem() { Argument = new DateTime(2020, 12, 1), Value = 7 },
        };
    }
}

public class DataItem {
    public DateTime Argument { get; set; }
    public double Value { get; set; }
}

public class CustomColorizer : ICustomPointColorizer {
    Color ICustomPointColorizer.GetColor(ColoredPointInfo info) {
        switch (info.DateTimeArgument.Month) {
            case 12:
            case 1:
            case 2:
                return Color.FromHex("#5982db");
            case 3:
            case 4:
            case 5:
                return Color.FromHex("#755dd9");
            case 6:
            case 7:
            case 8:
                return Color.FromHex("#9b57d3");
            case 9:
            case 10:
            case 11:
                return Color.FromHex("#92278f");
            default:
                return Color.Default;
        }
    }
    public ILegendItemProvider GetLegendItemProvider() {
        return null;
    }
}

Color Points by Data Source Values

In this example, a bar chart visualizes GDP values for the G20 and color data points according to a country’s continent.

Index-Based Colorizer

View Example: Color Points by Data Source Values

<ContentPage xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:dxc="clr-namespace:DevExpress.Maui.Charts;assembly=DevExpress.Maui.Charts"
             x:Class="ColorizerExample.MainPage"
             xmlns:local="clr-namespace:ColorizerExample">
    <ContentPage.BindingContext>
        <local:ViewModel/>
    </ContentPage.BindingContext>
    <dxc:ChartView Rotated="True">
        <dxc:ChartView.Series>
            <dxc:BarSeries PointColorizer="{local:ColorizerByRegion}">
                <!-- Bind the series to the data source. -->
                <dxc:BarSeries.Data>
                    <dxc:SeriesDataAdapter DataSource="{Binding CountryStatisticsData}"
                                           ArgumentDataMember="Country">
                        <dxc:ValueDataMember Type="Value" Member="Gdp"/>
                    </dxc:SeriesDataAdapter>
                </dxc:BarSeries.Data>
            </dxc:BarSeries>
        </dxc:ChartView.Series>
        <!-- Specify axis and legend settings here. -->
    </dxc:ChartView>
</ContentPage>
using DevExpress.Maui.Charts;
// ...

public class ViewModel {
    CountryStatisticsData data = new CountryStatisticsData();
    public List<CountryStatistics> CountryStatisticsData => this.data.SeriesData;
}

public class CountryStatisticsData {
    readonly List<CountryStatistics> data = new List<CountryStatistics> {
        new CountryStatistics("Argentina", 16011.6728032264, "America"),
        new CountryStatistics("Australia", 38159.6336533223, "Australia"),
        new CountryStatistics("Brazil", 11210.3908053823, "America"),
        new CountryStatistics("Canada", 39050.1673163719, "America"),
        new CountryStatistics("China", 7599, "Asia"),
        new CountryStatistics("France", 34123.1966249035, "Europe"),
        new CountryStatistics("Germany", 37402.2677660974, "Europe"),
        new CountryStatistics("India", 3425.4489267524, "Asia"),
        new CountryStatistics("Indonesia", 4325.2533282173, "Asia"),
        new CountryStatistics("Italy", 31954.1751781228, "Europe"),
        new CountryStatistics("Japan", 33732.8682226596, "Asia"),
        new CountryStatistics("Mexico", 14563.884253986, "America"),
        new CountryStatistics("Russia", 19891.3528339013, "Europe"),
        new CountryStatistics("Saudi Arabia", 22713.4852913284, "Asia"),
        new CountryStatistics("South Africa", 10565.1840563081, "Africa"),
        new CountryStatistics("South Korea", 29101.0711400706, "Asia"),
        new CountryStatistics("Turkey", 15686.860167575, "Africa"),
        new CountryStatistics("United Kingdom", 35686.1997705521, "Europe"),
        new CountryStatistics("Spain", 32230.3585974199, "Europe"),
        new CountryStatistics("USA", 47153.0094273427, "America"),
    };
    public List<CountryStatistics> SeriesData => this.data;
}

public class CountryStatistics {
    public string Country { get; private set; }
    public double Gdp { get; private set; }
    public string Region { get; private set; }

    public CountryStatistics(string country, double gdp, string region) {
        Country = country;
        Gdp = gdp;
        Region = region;
    }
}

public class ColorizerByRegion : IIndexBasedCustomPointColorizer, ILegendItemProvider {
    private CountryStatisticsData data = new CountryStatisticsData();
    private Dictionary<string, Color> colors = new Dictionary<string, Color> {
        {"Africa", Color.FromHex("5b9bd5")},
        {"America", Color.FromHex("ed7d31")},
        {"Asia", Color.FromHex("a5a5a5")},
        {"Australia", Color.FromHex("ffc000")},
        {"Europe", Color.FromHex("4472c4")}
    };
    private List<string> regions = new List<string> {
        "Africa", "America", "Asia", "Australia", "Europe"
    };

    public Color GetColor(int index) {
        return colors[data.SeriesData[index].Region];
    }

    public CustomLegendItem GetLegendItem(int index) {
        return new CustomLegendItem(regions[index], colors[regions[index]]);
    }

    public int GetLegendItemCount() {
        return regions.Count;
    }

    public ILegendItemProvider GetLegendItemProvider() {
        return this;
    }
}

Value Range Colorizers

You can color series points based on their Y-axis values. To do this, use a value range colorizer as follows:

  1. Assign a colorizer object to the series’s PointColorizer property.
  2. Populate the colorizer’s ColorStops collection with ColorStop objects. Each ColorStop object defines a value range (a pair of Y-axis values) and color. If a Y-axis value falls within the range, the point is painted with this color.

The following table lists series types and supported value range colorizers:

Series Type Value Range Colorizer
Area, RangeArea, Point, Bar, Line, StackedArea, StackedBar, and Bubble ValueBandPointColorizer
RangeBar RangeValueBandPointColorizer
StackedArea and StackedBar StackedValueBandPointColorizer
Bubble WeightedValueBandPointColorizer

Example

In this example, a bar chart displays cryptocurrency portfolio yield. Series points are red for negative values and green for positive values. Note that this chart diagram is rotated.

Band Colorizer

View Example: Predefined Value Range Colorizer

<ContentPage ...
             xmlns:dxc="clr-namespace:DevExpress.Maui.Charts;assembly=DevExpress.Maui.Charts"
             xmlns:local="clr-namespace:ColorizerExample">
    <ContentPage.BindingContext>
        <local:ViewModel/>
    </ContentPage.BindingContext>
    <dxc:ChartView x:Name="chart" Rotated="True">
        <dxc:ChartView.Series>
            <dxc:BarSeries LegendTextPattern="{}Profit from {CLV}% to {CHV}%">
                <!-- Bind the series to the data source. -->
                <dxc:BarSeries.Data>
                    <dxc:SeriesDataAdapter
                                DataSource="{Binding CryptocurrencyPortfolioData}"
                                ArgumentDataMember="Ticker">
                        <dxc:ValueDataMember Type="Value" Member="Profit"/>
                    </dxc:SeriesDataAdapter>
                </dxc:BarSeries.Data>

                <dxc:BarSeries.Label>
                    <dxc:BarSeriesLabel Position="Outside" 
                                            Behavior="Cut" 
                                            TextPattern="{}{V}%"/>
                </dxc:BarSeries.Label>

                <dxc:BarSeries.PointColorizer>
                    <dxc:ValueBandPointColorizer>
                        <dxc:ValueBandPointColorizer.ColorStops>
                            <dxc:ColorStop Color="Green" Value1="0" Value2="100"/>
                            <dxc:ColorStop Color="Red" Value1="0" Value2="-100"/>
                        </dxc:ValueBandPointColorizer.ColorStops>
                    </dxc:ValueBandPointColorizer>
                </dxc:BarSeries.PointColorizer>
            </dxc:BarSeries>
        </dxc:ChartView.Series>

        <!-- Specify axis and legend settings here. -->
    </dxc:ChartView>
</ContentPage>
// ...
public class ViewModel {
    public List<CryptocurrencyPortfolioItem> CryptocurrencyPortfolioData { get; }

    public ViewModel() {
        CryptocurrencyPortfolioData = new List<CryptocurrencyPortfolioItem>(){
            new CryptocurrencyPortfolioItem("NEO", 13),
            new CryptocurrencyPortfolioItem("HT", -12),
            new CryptocurrencyPortfolioItem("DASH", 9),
            new CryptocurrencyPortfolioItem("LINK", -3),
            new CryptocurrencyPortfolioItem("ETC", -8),
            new CryptocurrencyPortfolioItem("XMR", 10),
            new CryptocurrencyPortfolioItem("TRX", 5),
            new CryptocurrencyPortfolioItem("ADA", -7),
            new CryptocurrencyPortfolioItem("XTZ", 2),
            new CryptocurrencyPortfolioItem("BNB", 10),
            new CryptocurrencyPortfolioItem("USDT", -7),
            new CryptocurrencyPortfolioItem("EOS", 20),
            new CryptocurrencyPortfolioItem("LTC", -13),
            new CryptocurrencyPortfolioItem("BSV", -7),
            new CryptocurrencyPortfolioItem("BCH", 42),
            new CryptocurrencyPortfolioItem("XRP", -8),
            new CryptocurrencyPortfolioItem("ETH", 12),
            new CryptocurrencyPortfolioItem("BTC", 24),
        };
    }
}

public class CryptocurrencyPortfolioItem {
    public string Ticker { get; private set; }
    public double Profit { get; private set; }

    public CryptocurrencyPortfolioItem(string ticker, double profit) {
        Ticker = ticker;
        Profit = profit;
    }
}

Custom Value Range Colorizers

A predefined value range colorizer applies colors to points according to their Y-axis values. You can also color points based on a different data field than the one that contains the Y-axis values. To do this, implement a custom value range colorizer as follows:

  1. Assign a CustomValueBandPointColorizer object to a series’s PointColorizer property.
  2. Create a class that implements the ICustomColorizerNumericValueProvider interface and its GetValueForColorizer method. This method returns a value from the data source that specifies how a series point should be colored. Assign this class value to the colorizer’s ValueProvider property.
  3. Populate the colorizer’s ColorStops collection with ColorStop objects. Each ColorStop object defines a value range and color. If a value that the GetValueForColorizer method returns for a series point falls within the range, the point is painted with this color.

Note

You can use a custom value range colorizer for any series except for financial and pie series.

Example

In this example, the bubble chart displays GDP values for the G20. A point’s size indicates the country population and the color indicates the HPI.

Custom Band Colorizer

View Example: Custom Value Range Colorizer

<ContentPage ...
             xmlns:dxc="clr-namespace:DevExpress.Maui.Charts;assembly=DevExpress.Maui.Charts"
             xmlns:local="clr-namespace:ColorizerExample">
    <ContentPage.BindingContext>
        <local:ViewModel/>
    </ContentPage.BindingContext>
    <dxc:ChartView Rotated="True">
        <dxc:ChartView.Series>
            <dxc:BubbleSeries LegendTextPattern="{}{CLV} - {CHV} HPI">
                <!-- Bind the series to the data source. -->
                <dxc:BubbleSeries.Data>
                    <dxc:SeriesDataAdapter DataSource="{Binding CountryStatisticsData}"
                                           ArgumentDataMember="Country">
                        <dxc:ValueDataMember Type="Value" Member="Gdp"/>
                        <dxc:ValueDataMember Type="Weight" Member="Population"/>
                    </dxc:SeriesDataAdapter>
                </dxc:BubbleSeries.Data>
                <dxc:BubbleSeries.PointColorizer>
                    <dxc:CustomValueBandPointColorizer ValueProvider="{local:HpiProvider}">
                        <dxc:CustomValueBandPointColorizer.ColorStops>
                            <dxc:ColorStop Color="#CCff5a19" Value1="22" Value2="30"/>
                            <dxc:ColorStop Color="#CCfead2d" Value1="30" Value2="38"/>
                            <dxc:ColorStop Color="#CCe5e335" Value1="38" Value2="46"/>
                            <dxc:ColorStop Color="#CCace45c" Value1="46" Value2="54"/>
                            <dxc:ColorStop Color="#CC6ec95b" Value1="54" Value2="64"/>
                        </dxc:CustomValueBandPointColorizer.ColorStops>
                    </dxc:CustomValueBandPointColorizer>
                </dxc:BubbleSeries.PointColorizer>
            </dxc:BubbleSeries>
        </dxc:ChartView.Series>
        <!-- Specify axis and legend settings here. -->
    </dxc:ChartView>
</ContentPage>
using DevExpress.Maui.Charts;
// ...

public class ViewModel {
    HpiProvider valueProvider = new HpiProvider();
    public List<CountryStatistics> CountryStatisticsData => this.valueProvider.SeriesData;
}

public class HpiProvider : ICustomColorizerNumericValueProvider {
    private CountryStatisticsData data = new CountryStatisticsData();

    public double GetValueForColorizer(int index) {
        return this.data.SeriesData[index].Hpi;
    }

    public List<CountryStatistics> SeriesData => this.data.SeriesData;
}

public class CountryStatisticsData {
    readonly List<CountryStatistics> data = new List<CountryStatistics> {
        new CountryStatistics("Argentina", 16011.6728032264, 40412000, 54.055),
        new CountryStatistics("Australia", 38159.6336533223, 40412000, 41.980),
        new CountryStatistics("Brazil", 11210.3908053823, 194946000, 52.9),
        new CountryStatistics("Canada", 39050.1673163719, 34126000, 43.56),
        new CountryStatistics("China", 7599, 1338300000, 44.66),
        new CountryStatistics("France", 34123.1966249035, 64895000, 46.523),
        new CountryStatistics("Germany", 37402.2677660974, 81777000, 47.2),
        new CountryStatistics("India", 3425.4489267524, 1224615000, 50.865),
        new CountryStatistics("Indonesia", 4325.2533282173, 239870000, 55.481),
        new CountryStatistics("Italy", 31954.1751781228, 60483000, 46.352),
        new CountryStatistics("Japan", 33732.8682226596, 127451000, 47.508),
        new CountryStatistics("Mexico", 14563.884253986, 113423000, 52.894),
        new CountryStatistics("Russia", 19891.3528339013, 141750000, 34.518),
        new CountryStatistics("Saudi Arabia", 22713.4852913284, 27448000, 45.965),
        new CountryStatistics("South Africa", 10565.1840563081, 49991000, 28.190),
        new CountryStatistics("South Korea", 29101.0711400706, 48875000, 43.781),
        new CountryStatistics("Turkey", 15686.860167575, 72752000, 47.623),
        new CountryStatistics("United Kingdom", 35686.1997705521, 62232000, 47.925),
        new CountryStatistics("Spain", 32230.3585974199, 46071000, 44.063),
        new CountryStatistics("USA", 47153.0094273427, 309349000, 37.340),
    };
    public List<CountryStatistics> SeriesData => this.data;
}

public class CountryStatistics {
    public string Country { get; private set; }
    public double Gdp { get; private set; }
    public double Population { get; private set; }
    public double Hpi { get; private set; }

    public CountryStatistics(string country, double gdp, double population, double hpi) {
        Country = country;
        Gdp = gdp;
        Population = population;
        Hpi = hpi;
    }
}

Bind Colorizers to Data Source Fields

You can bind a colorizer to a data source that stores colors for series points. To do this, use a color data adapter as follows:

  1. Assign a ColorDataAdapter object to a series’s PointColorizer property.
  2. Use the adapter’s DataSource, ColorDataMember, and LegendTextDataMember properties to set the data source and specify fields that contain colors and descriptions.

Example

In this example, a bar chart visualizes GDP values for the G20 and paints bars with colors from a specific data field. Legend titles are also stored in a separate data field.

Color Data Adapter

<ContentPage ...
             xmlns:dxc="clr-namespace:DevExpress.Maui.Charts;assembly=DevExpress.Maui.Charts"
             xmlns:local="clr-namespace:ColorizerExample">
    <ContentPage.BindingContext>
        <local:ViewModel/>
    </ContentPage.BindingContext>
    <dxc:ChartView Rotated="True">
        <dxc:ChartView.Series>
            <dxc:BarSeries>
                <!-- Bind the series to the data source. -->
                <dxc:BarSeries.Data>
                    <dxc:SeriesDataAdapter DataSource="{Binding CountryStatisticsData}"
                                           ArgumentDataMember="Country">
                        <dxc:ValueDataMember Type="Value" Member="Gdp"/>
                    </dxc:SeriesDataAdapter>
                </dxc:BarSeries.Data>

                <!-- Retrieve series point colors and legend items from the data source. -->
                <dxc:BarSeries.PointColorizer>
                    <dxc:ColorDataAdapter DataSource="{Binding CountryStatisticsData}"
                                          ColorDataMember="Color"
                                          LegendTextDataMember="Region"/>
                </dxc:BarSeries.PointColorizer>
            </dxc:BarSeries>
        </dxc:ChartView.Series>

        <!-- Specify axis and legend settings here. -->
    </dxc:ChartView>
</ContentPage>
// ...
public class ViewModel {
    CountryStatisticsData data = new CountryStatisticsData();
    public List<CountryStatistics> CountryStatisticsData => this.data.SeriesData;
}

public class CountryStatisticsData {
    readonly List<CountryStatistics> data = new List<CountryStatistics> {
        new CountryStatistics("Argentina", 16011.6728032264, "America", Color.FromHex("9d419c")),
        new CountryStatistics("Australia", 38159.6336533223, "Australia", Color.FromHex("36a3a6")),
        new CountryStatistics("Brazil", 11210.3908053823, "America", Color.FromHex("9d419c")),
        new CountryStatistics("Canada", 39050.1673163719, "America", Color.FromHex("9d419c")),
        new CountryStatistics("China", 7599, "Asia", Color.FromHex("70c92f")),
        new CountryStatistics("France", 34123.1966249035, "Europe", Color.FromHex("cc3836")),
        new CountryStatistics("Germany", 37402.2677660974, "Europe", Color.FromHex("cc3836")),
        new CountryStatistics("India", 3425.4489267524, "Asia", Color.FromHex("70c92f")),
        new CountryStatistics("Indonesia", 4325.2533282173, "Asia", Color.FromHex("70c92f")),
        new CountryStatistics("Italy", 31954.1751781228, "Europe", Color.FromHex("cc3836")),
        new CountryStatistics("Japan", 33732.8682226596, "Asia", Color.FromHex("70c92f")),
        new CountryStatistics("Mexico", 14563.884253986, "America", Color.FromHex("9d419c")),
        new CountryStatistics("Russia", 19891.3528339013, "Europe", Color.FromHex("cc3836")),
        new CountryStatistics("Saudi Arabia", 22713.4852913284, "Asia", Color.FromHex("70c92f")),
        new CountryStatistics("South Africa", 10565.1840563081, "Africa", Color.FromHex("f8ca00")),
        new CountryStatistics("South Korea", 29101.0711400706, "Asia", Color.FromHex("70c92f")),
        new CountryStatistics("Turkey", 15686.860167575, "Africa", Color.FromHex("f8ca00")),
        new CountryStatistics("United Kingdom", 35686.1997705521, "Europe", Color.FromHex("cc3836")),
        new CountryStatistics("Spain", 32230.3585974199, "Europe", Color.FromHex("cc3836")),
        new CountryStatistics("USA", 47153.0094273427, "America", Color.FromHex("9d419c")),
    };
    public List<CountryStatistics> SeriesData => this.data;
}

public class CountryStatistics {
    public string Country { get; private set; }
    public double Gdp { get; private set; }
    public string Region { get; private set; }
    public Color Color { get; private set; }

    public CountryStatistics(string country, double gdp, string region, Color color) {
        Country = country;
        Gdp = gdp;
        Region = region;
        Color = color;
    }
}