Używam HighCharts. Oto dokumentacja. Chciałbym wyłączyć te punkty, ale na początku nie wiem, jak to się nazywa. Dlatego nie mogę ich wyłączyć. Czy wiesz, jak mogę zabić te punkty?
javascript
highcharts
Lajos
źródło
źródło
states: { hover: { enabled: false } }
W Highcharts mamy trzy sposoby na wyłączenie markerów:
1) Wyłącz dla wszystkich serii według typu:
plotOptions: { line: { /* or spline, area, series, areaspline etc.*/ marker: { enabled: false } } }
2) Wyłącz dla jednej określonej serii:
series: [{ data: [14,17,21], marker: { enabled: false } }]
3) Wyłącz znacznik dla określonego punktu:
series: [{ data: [{ y: 14, marker: { enabled: false } },{ y: 17 },{ y: 21 }] }]
źródło
states.hover
.plotOptions.series.states.hover
Pracuje. Cieszę się, że zobaczyłem ten post.Spójrz na to z dokumentacji interfejsu API HighCharts:
http://api.highcharts.com/highcharts#plotOptions.series.marker.enabled
http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-enabled/
Opcje, które musisz dodać, to:
plotOptions: { series: { marker: { enabled: false } } },
Ta metoda jest przyjemna, ponieważ będzie działać ze wszystkimi wykresami ze znacznikami punktów. Jeśli chcesz mieć określony typ wykresu, sprawdź to:
plotOptions: { line: { // <--- Chart type here, check the API reference first! marker: { enabled: false } } },
Cieszyć się!
źródło