0

我目前正在使用下面显示的代码格式化我的图表系列点系列,但我看不到任何更改点标签文本字体的方法。有谁知道在哪里可以访问点标签的字体属性?

'set the series point color dependent on value and retrieve the best & worst values
    Dim bestval As Double = 0.0
    Dim worstval As Double = 0.0
    For Each pt As DataPoint In cht.Series("MonthPL").Points
        'pt.IsValueShownAsLabel = True
        pt.Label = "#VALY{C0}"
        pt.LabelToolTip = "#AXISLABEL 's P/L is #VALY{C0}"
        If pt.YValues(0) < 0 Then
            If pt.YValues(0) < worstval Then worstval = pt.YValues(0)
            pt.Color = Color.Red
            pt.LabelForeColor = Color.Black
        Else
            If pt.YValues(0) > bestval Then bestval = pt.YValues(0)
            pt.Color = Color.DarkGreen
            pt.LabelForeColor = Color.GhostWhite
        End If
    Next
4

3 回答 3

1

你应该在这里看到它

pt.Font

我在 c# 中使用的实际代码是

Chart1.Series[0].Points[0].Font
于 2012-07-16T23:25:03.023 回答
0

声明一个新字体,并使用它:

Font myFont = new Font(FontFamily.Generic.SansSerif, 14, FontStyle.Bold);

然后将数据点的字体属性设置为它:

pt.font = myFont;
于 2014-02-26T15:51:38.733 回答
0

添加系列标签为 Font="Zurich BT, 11pt, style=Bold"

于 2020-05-12T16:14:29.940 回答