Hi guys,
I am trying to stylize my area series chart. I would like to change color my chart. But color changes in x axis according to the offset values .
How do I change color to y axis?
<chart:SfChart HeightRequest="85" Margin="0" HorizontalOptions="FillAndExpand" BackgroundColor="Transparent" AbsoluteLayout.LayoutBounds="10,0,85,85">
<chart:SfChart.Series>
<chart:DoughnutSeries StartAngle="-90" EndAngle="270" EnableAnimation="true" DoughnutCoefficient="0.4" CircularCoefficient="20"
x:Name="Xchart3" XBindingPath="Baslik" YBindingPath="Deger">
<chart:DoughnutSeries.ColorModel>
<chart:ChartColorModel Palette="Custom">
<chart:ChartColorModel.CustomGradientColors>
<chart:ChartGradientColor StartPoint="0.5,1" EndPoint="0.5, 0">
<chart:ChartGradientColor.GradientStops>
<chart:ChartGradientStop Color="#00E3AD" Offset= "0"/>
<chart:ChartGradientStop Color="#133B7B" Offset= "1"/>
</chart:ChartGradientColor.GradientStops>
</chart:ChartGradientColor>
<chart:ChartGradientColor StartPoint="0.5,1" EndPoint="0.5, 0">
<chart:ChartGradientColor.GradientStops>
<chart:ChartGradientStop Color="White" Offset= "0"/>
<chart:ChartGradientStop Color="Silver" Offset= "1"/>
</chart:ChartGradientColor.GradientStops>
</chart:ChartGradientColor>
</chart:ChartColorModel.CustomGradientColors>
</chart:ChartColorModel>
</chart:DoughnutSeries.ColorModel>
</chart:DoughnutSeries>
</chart:SfChart.Series>
</chart:SfChart>
When I run my code I get 1 image. How do I change color to y axis?