-
Gantt Player bar
Hello,
A good feature for the gantt will be a player bar like you can see video editor (https://help.apple.com/assets/5B906E570946222769C59847/5B907055680CE21E1ABD0FFD/fr_FR/3586832deaa5d73c6ad2aca436e25c0d.png ).
Thank you
1 vote -
es posible mostrar horas para ver tendencias de una serie temporal en un eje Y a lo largo de los días en un eje X?
Representación de horas en un eje Y en una serie temporal.
1 vote -
New pattern need to be created from the parent circle patterns for intersected data
Hi
New pattern need to be created from the parent circle patterns for intersected data .
Example: If one of the parent circle has vertical line pattern and other parent circle has horizontal line pattern, the intersected part should have pattern that must be the result of both parent circle. In this case it should look like square box (combination of vertical and horizontal circles).1 vote -
1 vote
-
Add support for relative (lowercase) SVG operators in path
This would allow SVG paths to be shorter in many cases, which would reduce data size, and make the page load faster.
For example, SVG path for a rectangle could be
"M400 400h32v28h-32Z"
instead of
"M400 400L432 400 432 428 400 428Z"
See http://forum.highcharts.com/highmaps-usage-f14/use-of-relative-commands-in-svg-paths-for-map-t31720/1 voteThank you for your suggestion.
-
Highstock for R
I suggest that should be able highstock to use in R, ether in the highcharter package or in a new one. Furthermore it could be realize tu use with different class objects like data frames, xts and zoo
1 vote -
solid gauge rounded edges
I am using solid gauge, shape 'arc'. I am trying to show round edges, on both sides. Seems like it only rounded the edge on the left, but not right.
Basically, also round the gray edge, too
1 vote -
1 vote
-
Ability to put a marker on Gauges
It would be great if we can add an extra UI (any UI shape , triangle or arrow shape) on Angular or Solid gauge chart to indicate extra value(probably a target value or goal value) other than the current value.
I know I can put a label anywhere (with x,y pixel values) but this is not dependant on the location of the value on graph. It would be awesome if I can put "marker" (one or more?) with a series data value to insert a shape or something similar.
1 voteOne way to do it would be to add a static dial: http://jsfiddle.net/highcharts/mgucea1x/, but you are limited to the options given for the dial shape.
-
Display Highchart As image
I want to display highchart as image so if data come from api chart in image changes according to that .
1 vote -
can we allow Heatmap Zones to respect colors from colorAxis?
I have a requirement for heatmaps which involves applying a patternObject as a color for zones applied to the x-axis, but I also need the pattern fill to respect the color applied by the colorAxis.dataClasses. Is there currently a way to do this that doesn't involve applying classNames in styled mode?
1 vote -
Add more compatible fonts for exporting SVGs
At least Impact, Arial Black and Georgia seem to be missing.
1 vote -
Make plotLines work without explicit width or color
Most things in HighCharts have smart defaults, so unset options will do something reasonable. But plotLines is not this way: if the user does not explicitly specify a width and color, no line will be drawn (and sometimes a JS error will happen).
Example which works but includes comments on how to easily break it: http://jsfiddle.net/LKayp/
I think plotLines (and addPlotLines) should default to a reasonable width and color, just as regular series lines do.
1 voteThank you for the request.
-
Property for donut chart to show the aggregated total exactly at the center of donut
Provide a property for donut chart to show the aggregated total exactly at the center of donut
var colors = Highcharts.getOptions().colors,
…categories = [
"Chrome",
"Firefox",
"Internet Explorer",
"Safari",
"Edge",
"Opera",
"Other"
],
data = [
{
"y": 62.74,
"color": colors[2],
"drilldown": {
"name": "Chrome",
"categories": [
"Chrome v65.0",
"Chrome v64.0",
"Chrome v63.0",
"Chrome v62.0",
"Chrome v61.0",
"Chrome v60.0",
"Chrome v59.0",
"Chrome v58.0",
"Chrome v57.0",
"Chrome v56.0",
"Chrome v55.0",
"Chrome v54.0",
"Chrome v51.0",
"Chrome v49.0",
"Chrome v48.0",
"Chrome v47.0",
"Chrome v43.0",
"Chrome v29.0"
],
"data": [
0.1,
1.3,
53.02,
1.4,
0.88,
0.56,
0.45,
0.49,
0.32,
0.29,
0.79,
0.18,
0.13,
2.16,1 voteYou can add this to the title dynamically: http://jsfiddle.net/highcharts/h24v71vs/
-
Events for annotation and indicator changed
For a StockChart every time the user adds, removes or modifies an annotation or an indicator, either over the annotation-/indicator-popup or by dragging an annotation-control-point directly, an event on the chart instance should be fired, so that you can e.g. automatically save the chart-state every time something has changed.
Maybe something like:
Highcharts.Chart#events:annotationChanged
Highcharts.Chart#events:indicatorChanged1 voteHi,
Thank you for submitting the idea.
Basic events are already here: on chart level we have addSeries (https://api.highcharts.com/highcharts/chart.events.addSeries) and series remove – implemented, but not a part of documented API (demo: http://jsfiddle.net/BlackLabel/0cosmk2g/) or similar series destroy (the same situation).
For series update you could use series render event (not a part of documented API).
Events for annotation update are not yet implemented.
How to resolve:
Generally, this could be implemented through extending Highcharts. Related functions that create, update and destroy annotations could be wrapped to fire additional events. I’ll try to provide a POC later this week. -
highchart solid gauge show a default tooltip or series
many people don't have the idea to move the mouse over the apple watch solid gauge at the first impression, is there anyway to show one tooltip to pretend it's selected by default? or show series around the circle ?
1 voteYou can show the tooltip programmatically: http://jsfiddle.net/highcharts/9ydqmou9/
-
VennDiagram
I need no default datalabel for venndiagram. Kindly reply with solution as early as possible.
1 vote -
Request for Mexico Cities HighCharts
https://www.highcharts.com/maps/demo/map-drilldown
i want like this highcharts for mexico. i have done to implement the mexico states but find no data for mexico cities. can anyone provide js file for mexico cities details.thanx.
1 vote -
Have a movable marker in line series which will stay on position even if the data is loading dynamically.
A marker like a tooltip but which will stay all the time and can be moved around on a line series chart. This marker should not disappear even if the line series data is updated.
1 vote -
speed calculation in time graph
It would be very useful to calculate the speed of change in the y axis at every point in the time series. Something like this:
chart.series[0].points[0].y.speed(year)speed(Year) would calculate the rate of change per year, or month or day of the Yaxis variable,
you could also implement acceleration
chart.series[0].points[0].y.acceleration(year)1 vote
- Don't see your idea?