1077 results found
-
One digit month format
One digit month format (i.e. "2" instead of "02") is not yet supported.
9 votesYou can implement it by defining your own dateFormats to extend the built-in ones: http://jsfiddle.net/highcharts/QECBE/
-
I suggest you a new feature for "donut charts"
I suggest you a new feature for "donut charts" (with 2 or more circles, like "browser" and "version" in your example).
I have a real need in this feature. What is it?
When user click on one label at the legend (which has 2 labels: "browser" and "version") this label and circle at the chart display none.
The other data at the chart (i mean the next circles, more outlying) must regroup.
So, if there are 2 same "1.1" version, with "5%" and "7%" at the second circle, after the regroup it must display "12%" in one sector.
I realy…9 votes -
Smooth animation transitions when series data changes
It would be great if individual points could be automatically animated when the data sets change.
I came up with a solution myself for a relatively simple data but I would love if this could be used to create cool charts like this (when bubble charts are implemented!)
http://www.nytimes.com/interactive/2012/02/13/us/politics/2013-budget-proposal-graphic.html
here is my quick 'simple' demo: http://jsfiddle.net/Robodude/Dswzy/6/
9 votes -
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();
} -
Add PlotOptions Series Stacking option to Sort stacked bars
Would like to be able to change the order of the bar segments that are stacked within a bar so that the largest bar segment is first (leftmost) then the second largest and so on.
Would be nice to have a new plotOptions > series > stacking option to support this; maybe 'sorted' ?
Here's a sample; the fiddle will show what the 'normal' stacking option renders: http://jsfiddle.net/mDJ4u/1/
What I would like to render with the 'sorted' stacking option is this:
https://docs.google.com/file/d/0B9onkNkGaChjcXB1S3hFa2R5eUE/edit?usp=sharing
This request may be a duplicate of the request for 'pyramidal' graph:
http://highcharts.uservoice.com/forums/55896-general/suggestions/9142159 votes -
Support offset of x axis with concrete Y scale value rather than pixel offset
Now highcharts support setting offset pixel of x axis to specify x axis position,but is not convenient, it is better to support setting offset of x axis with concrete Y scale value rather than pixel value. please see example http://jsfiddle.net/cxARQ/5/ , I want to set position of x axis at 50 of Y axis, but it is hard to set exact position with pixel.
9 votes -
9 votes
-
Add rowrange chart type
To build Gantt-charts, we currently use inverted columnrange types. However, if we want to plot another graph type on the same graph, e.g. line, then this will be inverted as well. This causes problems as the x and y values have to be inverted, meaning that the new x data is no longer in order.
9 votes -
overlapped column datalabels. Reposition in outside as pie chart
For minor values, the dataLabels of Columns showing overlapped.
See my StackOverflow post:
9 votes -
overflow datalabel for column/bar
Like the propertie 'overflow' that is used by show/hide dataLabel when it's outside the plot area,
It will be usefull, create a overflow propertie for columns/bars (or more charts where is applicable), that permits to the user define if a Datalabel must be render or not when the datalabel is bigger than a column/bar (column spacing)
9 votes -
I want to create a word cloud. But unfortunately its not available . http://www.wordle.net/show/wrdl/8075201/Independent_Learning
Add word cloud charts also.
9 votes -
Inserting a tooltip option about the chart
Some complex charts need bring some information to user.
So, for it, to insert a button with a tooltip would be very good.
Like it: http://postimg.org/image/rttirx91x/
9 votes -
Show tooltip on data label (line charts)
Linecharts should display the tooltip when you hover over the data label. Just like column charts do.
Compare http://jsfiddle.net/kzoon/q9d1357y/ with http://jsfiddle.net/kzoon/8h39gkyw/1/I actually think this is a bug and not a feature request, but got referred here
9 votes -
Vertical line markers with ToolTip
I would like to add vertical line markers to mark for events which happened during the time-series data (like device reboot, device Update, Connected/Disconnected). Like flags from Highstock, just without any label associated and line going from top to bottom. With axis flags it is hard to precisely see when the event occurred when having multiple series plotted. And because the event is for multiple series all together, it is not reasonable to put them onto a particular series.
9 votes -
Map of Lebanon with all districts?! Please
Please post a map of Lebanon with all districts!
9 votes -
Can you please advise if i want to create pointer line between bubble and label ?
Hello, today I want to modify bubble chart to have a label and line from label pointing to any bubble, that something like pie chart have a label and line pointing to any piece of pie chart.
This time it's possible to do that or have any idea ?
Thank you. :)
9 votes -
Stacked Area chart for irregular interval data points
When you create a stacked area chart, the areas only stack properly when the data points are at even intervals. This is often not the case, and so the data displays as points and pieces of area (http://jsfiddle.net/ze5fx67d/).
It would be ideal to have the ability to stack values despite irregular intervals, stacking based on the closest "nearby" data point, but currently it fails to stack at all.
9 votes -
Surface Pyramid Chart
Originally described here: https://forum.highcharts.com/highcharts-usage/surface-pyramid-chart-t39503/
What you have is just a Linear Pyramid: http://jsfiddle.net/cristiscu/sbt6bbfh/6/. Top segment's height is 15% of the full pyramid height.
Surface Pyramid: http://jsfiddle.net/cristiscu/sbt6bbfh/7/. The only change was in the pyramidMode value. Top segment's area was made bigger, to show 15% of the whole pyramid surface.
Reference:
pyramidMode (Syncfusion ejChart): https://help.syncfusion.com/api/js/ejchart#members:commonseriesoptions-pyramidmode
valueRepresents (amCharts): https://docs.amcharts.com/3/javascriptcharts/AmFunnelChart
PyramidValueType (Microsoft ASP.NET Chart): https://msdn.microsoft.com/en-us/library/dd456634.aspx9 votesThanks for your suggestion! This is probably equivalent to the bubble sizeBy option, which sets whether the bubble’s value should be expressed by its area or its diameter.
http://api.highcharts.com/highcharts/plotOptions.bubble.sizeBy
-
Ability to add and remove multiple points
It should be possible to add an array with addPoint() or better to have addPoints(), insertPoints() or addData() where 1) array can be given as argument, 2) insertion index can be given as argument in case the data is already sorted. Or maybe have ability to splice new array to existing series.
More info in related GitHub issue: https://github.com/highcharts/highcharts/issues/4724
9 votes -
9 votes
- Don't see your idea?