1077 results found
-
fourfold table
to analyse product sales (dogs/stars) etc.
1 vote -
Marker on hover on the yAxis
it would be nice if a data point is hovered the y-value is not displayed in the tooltip but as a marker in the y-axis.
check this chart for a demonstration: http://www.boerse-go.de/jandaya/#Ticker/Profil/DAX
6 votes -
Data from SQL Database...
A clear example through which people can read about how to manage data from a SQL database with 'While' function.
8 votes -
symbols
Add a property that would turn on the background color for custom symbols. See forum post: http://highslide.com/forum/viewtopic.php?f=9&t=7134
6 votes -
do demo: ajax/json data from tables.googlelabs.com
tables.googlelabs.com has many tables with interesting data. If you could build charts from this data it would be pretty useful.
7 votesThat’s a great idea. Will have a look at it.
-
How to create pyramidal graph with bar chart and series: stacking: 'pyramidal'
To create a pyramidal chart in first time, it's necesary to add over line 4816 of hightcharts.src.js the next code:
if (stacking == 'pyramidal'){
yValue = yValue - yBottom;
}To show a pyramidal chart, the plotOptions can be set:
plotOptions: {
series: {
stacking: 'pyramidal'
}Finally one of the series can be with negatives values to show de bar opposite with the other serie.
1 vote -
cursor:'pointer' on every point
Let specify the cursor:'pointer' on every point, not only on entire series or in the plotOptions object, thanks.
0 votesThanks for the idea!
-
Yield chart
I' m user news. I'm student. I need Yield Report .
people can see chart (http://highslide.com/forum/viewtopic.php?f=9&t=6986&p=32985#p32985). please help . thanks2 votes -
2 votes
-
Data visualization on a planisphere
This kind of visualization can be found on google flu trends for instance.
It's a great way to represent geolocated data, allowing the user to have a comprehensive view in a glimpse of an eye.7 votes -
4 votes
-
Add 508 compliance
Add support for section 508 .....
8 votesA solution for adding a machine readable HTML table below the chart can be seen at http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/studies/accessible/
-
4 votes
-
X-Values Show Hide
With legends, it is possible to turn off one entire series, by clicking on one of the items in the legend.
Is there a way to do that for X-values, i.e.
Say X-Values are [0, 1, 2, 3, 4]
and are plotted in the chart.Now, there is a selection box or legend, that allows you to select what x-values are to be displayed.
3 votes -
31 votes
-
Export custom range data (through navigator) to excel
Currently, the entire data series is being exported to excel instead of selected custom range by navigator. Image and pdf formats are working fine. Is there any way to export only current plotted series to excel?
0 votes -
add useExternal setting to tooltip config
Add a new useExternal setting to the tooltip config which when set to true, would prohibit the tooltip from actually being shown in the chart, but it would still allow the tooltipRefresh event to fire. By allowing the tooltipRefresh event to still fire, an external non-highcharts tooltip can be created using the information passed along in that event. From looking into the code, this can maybe be done in the Tooltip refresh method?
[code]
// update the inner HTML (add the useExternal check here)
if (text === false || tooltip.useExternal) {
this.hide();
} else {
…// show it if (tooltip.isHidden)
0 votesThank you for your request.
- Don't see your idea?