dashStyle (plotOptions properties)
차트 선의 종류를 설정 합니다.
Info
name |
type |
required |
description |
dashStyle |
string |
선택(Solid) |
선의 종류 |
Enum
value |
description |
Solid |
실선 |
ShortDash |
짧은 대쉬선 |
ShortDot |
짧은 점선 |
ShortDashDot |
짧은 대쉬+점 |
ShortDashDotDot |
짧은 대쉬+점+점 |
Dot |
점선 |
Dash |
대쉬선 |
LongDash |
긴 대쉬선 |
DashDot |
대쉬+점 |
LongDashDot |
긴 대쉬+점 |
LongDashDotDot |
긴 대쉬+점+점 |
Example
myChart.setOptions({
plotOptions: {
line: {
dashStyle:"LongDash"
}
},
series: [{
name : "서울",
data : [60,40,20,80]
},{
name : "인천",
data : [30,50,90,70]
},{
name : "부산",
data : [40,70,30,60]
}]
}, {
append: true,
redraw: true
});

제공 버전