score:0
there are some hints on optimising performance on the highcharts website here: http://docs.highcharts.com/#faq$optimize-performance
however, with that many points, i would consider using highstock. there is no way to make out the detail of that many points, so aggregating them in some way would make a better chart (http://docs.highcharts.com/#data-grouping).
score:0
perhaps too late to be useful (and the example link no longer works, so i'm not sure if this applies), but there's a newish highcharts plugin to downsample time series data with the intent to retain the shape of the original data.
http://www.highcharts.com/plugin-registry/single/13/highcharts-downsample
score:1
as far as tooltips, check out the highcharts data api, specifically number 2 in the list. if that doesn't cut it for you, you can pass in an array of objects where you specify the data you want to get. then, in the formatter, it is easy to reference. here's a jsfiddle showing how to reference the names once they're in your data array.
the formatter is
formatter: function () {
var s = "";
$.each(this.points, function (i, point) {
s += point.point.namelist[0];
});
return s;
}
and the data sets look like:
data = [ ...,
{x: xval, y: yval, namelist: mylistofnames},
...]
where xval
and yval
are the x and y values of the data points and mylistofnames
is an array of strings.
score:3
Source: stackoverflow.com
Related Query
- Highcharts scatter plot with lots of data points running really slow
- Highcharts doesn't display series with lots of data points
- highcharts Scatter Chart not loading with LOTS of data
- Fill area beneath scatter points with color in Highcharts 3d scatter plot
- Highcharts - connect points with a line in scatter plot on hover
- Highcharts fill in scatter plot data with 0s
- Highcharts cloud Scatter plot with data array
- Resize data points with highcharts
- highcharts with null data points
- How to structure Angular with Highcharts and lots of dynamic data
- Highcharts scatter plot with variable line width
- Highcharts - Global configuration with common code and unique data & Headings
- HighCharts scatter plot with Datetime on X Axis not plotting values correctly
- Highcharts scatter chart legend toggle running slow
- Tooltip in chart with line- and scatter plot in highcharts 3.0.7
- How to input plot data into highcharts with rails
- Highcharts - How to make a scatter plot with multiple series from HTML table
- Highcharts Scatter Plot - How to Fix Overlapping Data Labels?
- Display multiple points with exact same value in scatter HighCharts
- HIghcharts column graph with more than 50 data points
- Possible to use Highcharts Scatter Plot with categories?
- Get json data into Highcharts scatter plot
- Plot Highcharts data from past 30 days with Ruby on Rails
- Issue with Dates - trying to plot MongoDB data in Highcharts via PHP
- Plot a bar graph using Highcharts drilldown with two different JSON end points
- Highcharts how to make legends as data labels on scatter plot
- Highcharts Synchronized charts with missing data points
- Highcharts series visibility with csv data source
- Dates not displaying correctly in Highcharts plot with irregular time data
- How to have multiple highcharts with different series data in vuejs without repeating code
More Query from same tag
- Synchronized HighCharts does not work when charts have different width
- loading a json file to highchart html page
- High Chart Data label Formatter not working properly
- How to dynamically create timeline chart on click of x-range chart in highcharts angular
- Current month tick labels in week format and other tick labels in month/year format(Highcharts)
- Highcharts : how to display only days on xaxis?
- highcharts get all of the minimum points of the chart
- How can i draw a high chart with two labels in x coordinate using highchart
- Highchart - show values on Chart
- Highcharts datetime starting on wrong day
- Highstock: How to change flag fill colour on click
- Add clickable link to tooltip in Highcharts Scatter Plot
- HighCharts Bar graph: Showing Bar Value when hovering the mouse
- How do I make highcharter use colorIndex number from tidy dataframe
- R highcharter() global thousand separator?
- Symfony2: Highchartsbundle data problems
- R Highcharter: Dynamic multi level drilldown in Shiny
- Highchart JS Set data not updating Export: ShowTable on Dropdown Event but chart updates fine
- Highcharts, Mysql, and Codeigniter
- Data not showing with the Timestamp Values : Highcharts
- Highstock/chart - On resize, don't crop chart
- Pass data in form of variable -Highcharts
- Set cell size in Heat Map. Highcharts
- Export Highcharts to jsPDF - canvg error
- Updating Highcharts column chart based on drop down-menu
- Highcharts heatmap logarithmic colorAxis fails when 0
- Highmaps: Need to get unplotted data
- How can i color one sector
- change vertical lines position in column chart
- A way to generate highcharts dynamically (including web page) in JS?