0

Office オープン XML SDK を使用して、滑らかな線で散布図を描画しましたが、シリーズの線のスタイルを変更して破線を表示する方法を知りたいですか?

4

1 に答える 1

0

最後に、OPenXML Productivity ツールを使用して解決しました。PresetDash プロパティを System.Dash に変更する必要があります。

private void MakeSeriesDashedLine(ScatterChartSeries scs)
            {
                C.ChartShapeProperties chartShapeProperties1 = new C.ChartShapeProperties();
                A.Outline outline1 = new A.Outline();
                A.PresetDash presetDash1 = new A.PresetDash() { Val = A.PresetLineDashValues.SystemDash };

                outline1.Append(presetDash1);
                chartShapeProperties1.Append(outline1);
                scs.Append(chartShapeProperties1);
            }
于 2013-05-31T22:17:08.157 に答える