2013-02-08 2 views

답변

0

그래픽 객체에 대한 액세스로 lineColor/lineWidth를 수정하고 attr() 함수로 수정할 수 있습니다.

chart.series[0].graph.attr('stroke', 'red'); 
chart.series[0].graph.attr('stroke-width', 10); 
0

. 당신은 세리를 가질 수 있습니다 : serie = [1, 2, 4, 5, 6, 7, 8];

또한 개체 대신 숫자를 사용할 수 있습니다. 이 객체는 fillColor, radius, symbol과 같은 여러 속성을 가질 수 있습니다.

그래서, 당신은 같은과 세리의 특정 요소를 수정할 수 있습니다

serie[i] = { 
    y: serie1[i],   // This is the number 
    marker: { 
    fillColor: 'red', 
    radius: 5, 
    symbol: 'url(https://www.highcharts.com/samples/graphics/snow.png)' 
    } 
} 

현재 문서를 찾을 수 있습니다 https://api.highcharts.com/highcharts/plotOptions.series.marker https://www.highcharts.com/demo/spline-symbols

관련 문제