4

選択したポイントのスタイルを変更したい。ポイントを選択すると灰色になります。選択したすべてのポイントを赤くしたい。

4

1 に答える 1

20

次のようにスタイルを設定しますmarkers.state.select

    plotOptions: {
        series: {
            allowPointSelect: true,
            marker: {
                states: {
                    select: {
                        fillColor: 'red',
                        lineWidth: 0
                    }
                }
            }
        }
    }

例: http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-states-select-fillcolor/

参照: http://www.highcharts.com/ref/#plotOptions-scatter-marker-states-select

更新:棒グラフの場合、構成は少し異なるはずです (理由はわかりません):

plotOptions: {
    series: {
        allowPointSelect: true,
        states: {
            select: {
                color: 'red'
            }
        }
    }
}

例: http://jsfiddle.net/8truG/

于 2012-06-25T17:20:25.207 に答える