Syntax
(0.0.0.0)
property Style: EMarkStyle;
Description
SeriesÀÇ Mark¸¦ ³ªÅ¸³¾ °ªÀÇ À¯ÇüÀ» Á¤ÀÇÇÑ´Ù.
Value |
Style |
Description |
Example |
0 |
smsValue |
ÀϹÝÀûÀ¸·Î
Yvalue(HorizBarSeriesÁ¦¿Ü) |
1234 |
1 |
smsPercent |
ÃÑ Yvalue¿¡ ´ëÇÑ
¹éºÐÀ² |
12% |
2 |
smsLabel |
ÇØ´ç PointÀÇ Label |
Cars |
3 |
smsLabelPercent |
smsLabel + smsPercent |
Cars 12% |
4 |
smsLabelValue |
smsLabel + smsValue |
Cars 1234 |
5 |
smsLegend |
Â÷Æ®ÀÇ Legend°¡ Ç¥½ÃÇÏ´Â
°ªÀÇ ¹éºÐÀ² |
|
6 |
smsPercentTotal |
ÃÑ Yvalue°ª°ú ÇØ´çÇÏ´Â
°ªÀÇ ¹éºÐÀ² |
12% of 1234 |
7 |
smsLabelPercentTotal |
smsLabel +
smsPercentTotal |
Cars 12% of 1234 |
8 |
smsXValue |
XValue |
1 |
9 |
smsXY |
sms XValue + smsValue |
1 1234 |
Example
[VBScript]
<SCRIPT
LANGUAGE="VBScript"> Sub
LoadChart() Chart1.Series(0).Marks.Style
= 1 End
Sub </SCRIPT> |
[java script]
<SCRIPT
language=javascript> function XXX(){ Chart1.Series(0).Marks.Style = 1; } </SCRIPT> |
See
Also