我在程序里面要设置 Series 的Marks面板的Style的样式, 
用代码怎么实现???

解决方案 »

  1.   

    (*  TSeriesMarksStyle=( smsValue,             { 1234 }
                          smsPercent,           { 12 % }
                          smsLabel,             { Cars }
                          smsLabelPercent,      { Cars 12 % }
                          smsLabelValue,        { Cars 1234 }
                          smsLegend,            { (Legend.Style) }
                          smsPercentTotal,      { 12 % of 1234 }
                          smsLabelPercentTotal, { Cars 12 % of 1234 }
                          smsXValue,            { 1..2..3.. or 21/6/1996 }
                          smsXY,                { 123 456 }
                          smsSeriesTitle,       { Series1 }  // 8.0
                          smsPointIndex,        { 1..2..3... } // 8.0
                          smsPercentRelative    { 100%..90%..120%... } // 8.0
                          );*)
    Chart1.Series[0].Marks.Visible := true;
    Chart1.Series[0].Marks.Style := smsPercent;