1077 results found
-
Image fallback for non-javascript environments
I imagine this would be something similar to Google Static Maps, where a chart would be displayed via an img tag. This would be useful as a fallback for browsers with JavaScript disabled, or in dynamically created downloadable documents (like PDFs)
10 votes -
have options for pie charts with single values
When a pie chart has only one item, a white line appears (the border). This is easily fixed by specifying a borderWidth of 0. But on hover, the line reappears. It'd be nice to be able to disable that border on hover as well
2 votes -
Confidence bars
It would be great if you added support for drawing confidence bars so one could make something like this: http://listening-tests.hydrogenaudio.org/sebastian/mp3-128-1/results.png
4 votes -
Support amination of Area charts
Animation of Area charts does not work in v2.1.1.
See: https://github.com/highslide-software/highcharts.com/issues/issue/169/#comment_631931
9 votes -
DataGrid with Hscroll moveVscroll move
Create datagrid but vscroll move fields move Hscroll move Field lock
3 votes -
10 votes
-
Hold option + click on legend item to disable all other data. (Like Photoshop hide all other layers)
6 votes -
A chart that uses 3D cristal recipients shapes instead 3D bars
For example test tubes graduated with different fill liquids and quantity, or any other shape, this is helpful for formulas inventory
3 votes -
Predefined set of lineargradients
If define global.lineargradient, then switch lineargradient on. Also I hope highcharts has it own set of default colorscheme for gradient which I don't need to worry about.
2 votes -
Remove div after close (clickable points)
I propose to remove div after closure (div created by clickable points).
In highslide-full.min.js:2932 to afterClose function i've added:
hs.expanders[this.key].content.parentNode.parentNode.removeChild(hs.expanders[this.key].content.parentNode);this solutin will be very helpfull
6 votes -
Scatter plot improvements
Please, consider these two features :
- allows to set the radius proportional to a third data point variable (z),
- allows to connect some markers by line segments (this will illustrate the fact a given value is related to another one)11 votes -
Restore "target" option in the "credits" configuration
It would be most useful to restore the "target" option in the "credits" configuration so that when the user clicks on the credit text (usually in the lower right angle of the graph), the link can be opened in a new page instead of the current one.
22 votesHere’s a small plugin that you can use that alters the click handler to simulate a HTML anchor click including a target: http://jsfiddle.net/highcharts/ud795/
-
Static image rendering for performance
The dynamic SVG plots could be replaced by a static image of the plots, similar to how the exported PNG looks. The choice between dynamic and static could be made at runtime based on the size of the dataset.
I'm generating scatter plots based on data from a database. The plots looks great, however the performance gets to be a probably when the plot has more than 1000 points.
18 votes -
Set <svg> shape rendering property
http://www.w3.org/TR/SVG/painting.html#ShapeRenderingProperty
Allow setting of shape-rendering attribute in order to enable speed optimising.
Code modification example:
SVGRenderer.prototype = {
/**
* Initialize the SVGRenderer
* @param {Object} container
* @param {Number} width
* @param {Number} height
*/
init: function(container, width, height) {
var box = doc.createElementNS('http://www.w3.org/2000/svg', 'svg'),
loc = location;
attr(box, {
width: width,
height: height,
'shape-rendering': 'crispEdges', //suggest to add this by config7 votesYou can set it using CSS:
svg.highcharts-root {
shape-rendering: optimizeSpeed;
}See http://jsfiddle.net/highcharts/qkdynr7s/. You can see from the ugly, jagged line that it works.
-
Allow formatters to return svg source
Currently formatters can only return strings that then get wrapped in a svg text element.
It would be great if formatters could optionally return svg source themselves (or even have access to the svg renderer) so that it would be possible / easier to implement custom modifications to the way data labels and legend items are rendered.
10 votes -
PowerPoint Export
I'd like to see a PowerPoint export option.
The Highcharts chart would have to be a "chart object" on the PowerPoint slide, meaning you could click on the chart in the slide to change properties.
I'd be willing to pay more/extra for an export module that had this capability.
103 votes -
Drop-down box
Add drop-down box to select (up to 10) data records from external csv-file for charting.
6 votes -
Sort the legend
Right now it looks alphabetical in the legend even though the data shows by yAxis in the graph. Sorting would help with turning plots on or off.
28 votes -
motion chart
similar google motion charts and most impotant it should work on ipad
92 votesAs Jamie says, Highcharts already supports this, you just need to loop over datasets and run Series.setData or Point.update for each step.
But we are currently working on a set of demos to demonstrate this, which will make it easier for you to set up, as you can copy-paste from our samples.
UPDATE 2019.27.09:
There’s a plugin for it: https://github.com/TorsteinHonsi/Motion-Highcharts-Plugin -
Support of Network diagrams. Much similar to the Topology diagrams in Networking world
Addition of support to Network diagrams would make this utility perfect and complete.
42 votes
- Don't see your idea?