2013-05-24 2 views

답변

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); 
      } 
관련 문제