如何在Zedgraph中设置其他yaxis的字体和大小?

How to set font and size of other yaxis in Zedgraph?

我知道如何为主要的 xaxis 和 yaxis 设置字体系列和大小。 但是当 yaxis 索引为 y2 和 y7 时,我尝试了很多方法来处理其他 yaxis。 如图所示,DD-Prices是一个yaxisindex = y2的yaxis,PD-Price是一个yaxisindex = y7的yaxis。

这是我的代码:

        if (plotValue.Keys.Contains("DD_CurrentPrice"))
        {
            y2 = graphArea.AddYAxis("DD - Price");
            curve = new LineItem("DD - Current Price", null, plotValue["DD_CurrentPrice"], Color.FromArgb(255, 198, 001), SymbolType.None) { YAxisIndex = y2 };
            curve.Label.FontSpec = new FontSpec("Cambria", 10.0f, Color.Black, false, false, false);
            graphArea.CurveList.Add(curve);
        }

        if (plotValue.Keys.Contains("PD_MarkdownPrice") || plotValue.Keys.Contains("PD_CurrentPrice"))
        {
            y7 = graphArea.AddYAxis("PD - Price");
            if (plotValue.Keys.Contains("PD_MarkdownPrice"))
            {
                curve = new LineItem("PD - Markdown Price", null, plotValue["PD_MarkdownPrice"], Color.FromArgb(045, 186, 030), SymbolType.None) { YAxisIndex = y7 };
                curve.Label.FontSpec = new FontSpec("Cambria", 10.0f, Color.Black, false, false, false);
                graphArea.CurveList.Add(curve);
            }
            if (plotValue.Keys.Contains("PD_CurrentPrice"))
            {
                curve = new LineItem("PD - Current Price", null, plotValue["PD_CurrentPrice"], Color.FromArgb(011, 138, 000), SymbolType.None) { YAxisIndex = y7 };
                curve.Label.FontSpec = new FontSpec("Cambria", 10.0f, Color.Black, false, false, false);
                graphArea.CurveList.Add(curve);
            }

        }

没有属性设置曲线比例字体系列和大小。还有其他解决办法吗?谢谢

添加下面的代码可以解决这个问题:

            Axis axis = graphArea.CurveList[y2].GetYAxis(graphArea);
            axis.Scale.FontSpec.Family = "Cambria";
            axis.Scale.FontSpec.Size = fontSize;
            axis.Title.FontSpec.Family = "Cambria";
            axis.Title.FontSpec.Size = fontSize;