BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<chart:CategoryAxis >
<chart:CategoryAxis.LabelStyle>
<chart:ChartAxisLabelStyle TextColor="{Binding Source={x:Reference series},Path=Color }"/>
</chart:CategoryAxis.LabelStyle>
</chart:CategoryAxis>
<chart:SfChart.Series>
<chart:ColumnSeries x:Name="series" Color="#FFFEBE17" Label="ColumnSeries" XBindingPath="XValue" YBindingPath="YValue" ItemsSource="{Binding Data}" />
</chart:SfChart.Series> |
<chart:CategoryAxis >
<chart:CategoryAxis.LabelStyle>
<chart:ChartAxisLabelStyle TextColor="{Binding Source={x:Reference series},Path=Color}"/>
</chart:CategoryAxis.LabelStyle>
<chart:CategoryAxis.MajorGridLineStyle>
<chart:ChartLineStyle StrokeColor="White"/>
</chart:CategoryAxis.MajorGridLineStyle>
<chart:CategoryAxis.MajorTickStyle>
<chart:ChartAxisTickStyle StrokeColor="White"/>
</chart:CategoryAxis.MajorTickStyle>
<chart:CategoryAxis.AxisLineStyle>
<chart:ChartLineStyle StrokeColor="White"/>
</chart:CategoryAxis.AxisLineStyle>
</chart:CategoryAxis>
<chart:ChartLegend>
<chart:ChartLegend.LabelStyle>
<chart:ChartLegendLabelStyle TextColor="White"/>
</chart:ChartLegend.LabelStyle>
</chart:ChartLegend>
|