如何设置实时图表的标签颜色



我有一个基于 materialdesigninxaml 框架的应用程序,我可以在其中设置浅色和深色,当设置浅色时,我可以正确看到黑色的标签文本,但是当我设置深色主题时,图表的标签仍然保持黑色,所以我什么也看不到。这是我的图表:

 <lvc:CartesianChart Series="{Binding}" LegendLocation="Bottom">
       <lvc:CartesianChart.AxisY>
           <lvc:Axis Labels="{Binding AnalysisController.Labels}"/>
       </lvc:CartesianChart.AxisY>
 </lvc:CartesianChart>

我尝试按照文档的建议将其添加到我的 App.xaml 中:

<ResourceDictionary Source="pack://application:,,,/LiveCharts.Wpf;component/Themes/Colors/white.xaml" />

但文字的颜色仍然是黑色的

您可以将

轴的Foreground设置为另一种颜色,如下所示:

<lvc:CartesianChart Series="{Binding}" LegendLocation="Bottom">
    <lvc:CartesianChart.AxisY>
        <lvc:Axis Labels="{Binding AnalysisController.Labels}"
                  Foreground="White"/>
    </lvc:CartesianChart.AxisY>
</lvc:CartesianChart>

相关内容

  • 没有找到相关文章