1077 results found
-
callback for 'noData'
When there is no data to display, the message shows up on the chart. But there are things users might want to do in such a situation. For example, I have custom navigation buttons which lose meaning when there is no data. Some might even want to remove the context menu button. It would be great if there'd a callback where you could add/remove elements to/from the chart.
7 votesThanks for your suggestion! You can wrap the showNoData and hideNoData functions to add your custom code: http://jsfiddle.net/highcharts/3u2crb53/
-
Faded rectangle on candlestick chart which indicates minimum and maximum based on time t1- begin and t2-end of time window.
Idea is shown here: http://waszczyk.com/resources/rectandleDoNotDelete.PNG Top edge indicates a maximum from chart and bottom edge shows a minimum with respect to input- T1 and T2. The background color is faded and custimizable.
3 votesCould a polygon series work for you? http://jsfiddle.net/highcharts/n43L0a2x/
-
chart.options.zoomed parameter
In some cases I would like to know from outside the chart if the chart is in a zoomed in status or not without having to record initial state and later compare. This should be quite easy to do internally as you are already monitor this status for the "reset zoom" button.
See discussion : http://highslide.com/forum/viewtopic.php?f=9&t=24822
9 votesThe simples test would be to look for the button:
if (chart.resetZoomButton) {
// doSomething();
} -
Create a way to add benchmarks to individual columns
This would be similar to plot lines except it would be a line against which each column would be compared to, similar to this image: http://i.stack.imgur.com/NOWBk.gif
It has been suggested by Highcharts staff on StackOverflow community to use a scatter series with a custom shape for the line, which would work fine. But I wonder if this is a standard enough feature on a column chart to be worth supporting in a more "native" way.
4 votes -
Tooltip: Would like all column ranges in a series to be highlighted when mouse hovers on one element
I wish there is a way to load images so I can show you a screenshot. Now I'll try to describe it: Say Joe and Bob eat fruit apple and pear and Joe's consumption is green colored. I want the tooltip to do this: When the mouse is placed on Joe's share (a green area) in either apple or pear category, the tooltip shows Joe's consumption of apples AND pears (like apples: 2, pears: 5). That's easy using the "formatter". However, I also want Joe's shares (the green areas) in BOTH apple and pear categories to be highlighted. Currently, only…
1 vote -
Force pie chart dataLabels to be within chart bounds
force all pie chart data labels to be within the bounds of the container. For example if you want to offset the pie chart the labels will stay within the bounds of the container and not get pushed out of the viewing area. Or be a be able to set the location on the pie slice that the label is pointing at.
1 vote -
Add Palestine country
https://en.m.wikipedia.org/wiki/Palestine
Will you add Palestine to your work sites such forebears.co.uk2 votes -
Output format of eps or emf added
Printable documents benefit from vector based images. For example when embedding an image in word or powerpoint it would be more useful to have emf or eps charts than png. Unfortunately svg is not support by most non-browser software.
Is it possible to add eps or emf output to the list of available formats?
16 votesIf you can host your own export server, there would be a technical possibility of converting generated PDFs or SVGs in to those formats. I think that is the best chance.
-
be able to change color of series 'NAME'
be able to change color of series label. the color of the line is correct but not the text of the 'name'. now is <text style="color:#333333
1 vote -
Prepacked Export server
We would like to use the Export server and it would be much easier to get sign off to use it, if it were a pre packaged appliance, i.e. an OVF etc tht can be loaded up in VMWare. the appliance could carry a same support fee for upgrades to the OS, prerequisites and Export server itself. finally a support option could be added
3 votes -
Allow datetime axis labels to use guessed tooltip date format
With bigger time series data the x axis may have labels like 2012, 2013, 2014,... while the tooltips display January 2012, February 2013, since this is the actual data spacing. I think it is sometimes confusing to have those two different date formats and it would be nice to be able to specify that the datetime axis labels should also the same guessed date format as the tooltip.
I currently work around this with:
var xAxis = chart.xAxis[0]
var labelConfig = chart.series[0].points[0]
var guessedTooltipDateFormat = chart.tooltip.getXDateFormat(labelConfig, labelConfig.series.tooltipOptions, xAxis)
xAxis.update({labels: {format: '{value:' + guessedTooltipDateFormat + '}'}})3 votesCurrently the axis and the points live separate lives in a datetime axis, because we don’t necessarily want a one-to-one match. See for example http://jsfiddle.net/13tbwp3j/, where one axis tick per point would result in a cluttered axis.
-
Pie label distance as percentage of pie size
Allow percentage value for option dataLabels.distance (percentage of the pie radius). That way I can make sure that the labels fit inside their slice for every label length and pie size.
http://jsfiddle.net/kzoon/ntDX9/ shows what I mean. If you use distance -30 longer datalabels go outside their slide. If you use -50 they fit, but that will mess up small pies (100px).27 votes -
Hive plot
I would love a Hive plot to show how stuff is connected. Like this: https://bost.ocks.org/mike/hive/
6 votes -
Explicit support for drill-down Ajax interactive data zooming
I have an extremely large dataset (once-a-second measurements extending over several years) that I'd like to be able to zoom in (and out) interactively with the Highstock navigator as well as direct selection with the mouse.
I think I have finally managed to piece together a somewhat stable solution by using the rather under-documented setExtremes event. However, some slight instabilities remain, mainly due to the fact that the setData method appears to itself trigger the setExtremes event sometimes. In addition, my dataset is discontiguous (has many gaps) and Highchart seems to like to shrink the limits of the selected data…
19 votes -
Support "dblclick" event
Please support "dblclick" event for chart, series, and point.
18 votes -
Grouping Legend
Group two legends as one Section in High Chart by drawing in a Box
3 votes -
Header html to charts using exporting
I cannot making a good header using html and images (like logo) to making a export to pdf. Labels dont allow images and renderes dont show in exporting.js, just in print.
5 votes -
3D chart with round columns
Instead of the square 3D columns, make those columns nice and round. Like poles!
Example: http://www.codeproject.com/Articles/23012/Simple-Column-Chart-Generator
6 votes -
Have percentage position instead of fixed position for labels for different screen resolution
i would be nice option to have if highcharts has option for html label position based on screen percentage instead of fixed position in pixels. it would help a lot for different screen resolution
14 votes -
Area Range with 'flipping colors' after lines cross
I have implemented the AreaRange a few days ago and the result is great, you can see an example here: http://buijten.fr/HighchartWithAreaRange.PNG
It would be great to have two additional functionalities with this feature:
- Having different fill colors when the range lines flip, as per this example: http://buijten.fr/ichimoku-example.PNG
- Different line colors for the range limits (though this is achievable by adding additional lines as I did in the example)12 votes
- Don't see your idea?