我正在使用SyncFusion图形。为此,我专门使用SfChart组件。在此组件中,我希望能够将日期设置为以下格式:

周一,周二,周三,周四,周五,周六,周日(这意味着只显示大写字母的日子)

为此,我在sfChart中使用了ChartAxisLabelStyle的LabelFormat属性:

<chart:DateTimeAxis.LabelStyle>
      <chart:ChartAxisLabelStyle x:Name="DateAxisLabelStyle" TextColor="{StaticResource HistogramChartAxisLabelColorTheme1}">
        <chart:ChartAxisLabelStyle.LabelFormat>
          <OnPlatform x:TypeArguments="x:String" iOS="EEE" WinPhone="ddd" Android="EEE" />
        </chart:ChartAxisLabelStyle.LabelFormat>
      </chart:ChartAxisLabelStyle>
    </chart:DateTimeAxis.LabelStyle>

另外,我尝试编写转换器,但没有一个没有用。

有办法克服吗?

谢谢 :)

最佳答案

请在下面的链接下找到您所需的样本,如果需要任何说明,请告诉我们。

http://www.syncfusion.com/downloads/support/directtrac/general/ze/SimpleSample-502330254

问候,

萨姆苏登K S

10-08 07:00