Settings and activity
174 results found
-
48 votes
An error occurred while saving the comment -
21 votes
An error occurred while saving the comment Seems it stopped working with 1.3 - I've fixed it now. In case it still doesn't work for you, the fiddle might not be updated. See http://jsfiddle.net/cR7YN/.
An error occurred while saving the comment I think it's not generally a good idea for us to make jQuery UI a requirement for running Highstock, but we actually have set up a demo for using a date picker. See http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/rangeselector/input-datepicker/.
-
6 votes
An error occurred while saving the comment You're welcome!
-
3 votes
An error occurred while saving the comment That's because it's a matter of using PHP/MySQL rather than knowing how to use Highcharts. However, it's a frequently asked question so we added an article about it here: http://docs.highcharts.com/#preprocessing-data-from-a-database
-
22 votes
This is the corresponding GitHub issue: https://github.com/highslide-software/highcharts.com/issues/1059
An error occurred while saving the comment I've proposed a workaround in GitHub
An error occurred while saving the comment No news on this I'm afraid.. Currently we're working on the roadmap for version 3.
An error occurred while saving the comment Here's a modified version that hides the fake series from the legend and automatically shows and hides the series on legendItemClick of the main series.
-
3 votes
An error occurred while saving the comment So you're asking if a linear scale can be split into two where each part has its own resolution? Currently it isn't possible. I guess the closest you get is logarithmic axes. You may also consider using two Y axes.
-
147 votes
I created a plugin for this feature, see http://www.highcharts.com/plugin-registry/single/5/Rounded-Corners
Edit 2014-05-07: Co-worker Stephane also has a nice drop-in code snippet for creating custom shapes: http://jsfiddle.net/highcharts/My9Qp/
An error occurred while saving the comment Wow, you guys wouldn't happen to work in the same company, would you?
-
3 votes
An error occurred while saving the comment Hi Michael,
Is this something you can use? http://jamjs.org/packages/#/details/highcharts
-
4 votes
An error occurred while saving the comment The mouse cursor is currently e-resize on the navigator handles and pointer outside.
handles[index] = renderer.g()
.css({ cursor: 'e-resize' })
.attr({ zIndex: 4 - index }) // zIndex = 3 for right handle, 4 for left
.add();Am I missing something?
-
3 votes
An error occurred while saving the comment You can use the color stops to define where your gradients start and stop, and define intermediate points. So it seems to me like you would need to compute the stops dynamically based on the chart data.
-
3 votes
An error occurred while saving the comment Using tooltip.useHTML and tooltip.formatter, you can build a table inside your tooltip.
-
7 votes
An error occurred while saving the comment Thanks, this is something that we are considering.
In general, we recommend that you set up your own exporting server if you have specific requirements exceeding our free service.
-
7 votes
An error occurred while saving the comment A first step on the way, at least, would be to expose an API for the implementer to explicitly set the data grouping. How about some method like this:
Series.setDataGrouping('week', 2);
Where the first parameter is the grouping and the second one is the count? This one would be relatively simple to implement, and you can create your own GUI buttons for it.
-
31 votes
Here’s how you do that: http://jsfiddle.net/highcharts/2F4pJ/.
It has always been around, but perhaps we need to document this more clearly.
An error occurred while saving the comment @dcw:
This was a bug. See https://github.com/highslide-software/highcharts.com/commit/d517aa99b9f14560f0641ed6c3193a11878d25fc for the fix.
-
9 votes
An error occurred while saving the comment Animation with setData is probleatic in most cases because the points are destroyed and new ones are created.
However, in a case like yours, it would be better if you just loop over all points and use Point.update(). See http://jsfiddle.net/highcharts/Hbmyq/.
-
15 votes
Pinch zooming is being developed for Highcharts 3.0.
An error occurred while saving the comment It is still under development.
Technically you don't need it for selecting a range, you already have the chart.events.selection event for that. It currently works by dragging the finger across the chart.
-
14 votes
An error occurred while saving the comment This can be achieved by a little simple preformatting: http://jsfiddle.net/highcharts/RL6UY/11/
-
21 votes
An error occurred while saving the comment Good point. Or we could add an online builder like we did with the Configurator for Highslide.
A standalone framework adapter is on its way.
-
15 votes
An error occurred while saving the comment -
1 vote
An error occurred while saving the comment The credits options are simple by design. For more advanced tasks, use the Highcharts.Renderer and draw shapes programmatically. See http://api.highcharts.com/highcharts#Renderer
If you don't want to render 0 values, perhaps you should add null values instead?