This is the image before Drilling Down
http://imgur.com/qCSplBR
Image after drilling down
http://imgur.com/BbAbU7k
The date seems to be inaccurate on the tool tip before drilling down.
Related
Having some issues with the rendering of the navigator in gantt chart.
First on initial rendering it shows a range from like 1970 to 2017 (end date in this chart)
Then if I collapse a node, then it sets its date range correctly and the range stays correct thereafter.
Note that I added min and max values to the xAxis just to make sure that the range was fully set.
So that is correct but the content isn't as expected, where I'm trying to emulate the base example and show a mini gantt. My content is:
I originally had a yAxis like in the example but getting essentially the same results.
I have a HighStock chart with the usual date/time on the x-axis. The chart might include multiple years of data.
When the user zooms in, HighCharts automatically formats the labels on the x-axis appropriately, showing month/year, or date/time, etc. It does a good job.
But when the user zooms in there is no indication of what year the data is they are looking at. See the following image:
It would be nice to show the year without having to make use of a formatter function (HighCharts is 99% there, why re-invent the wheel?). I guess this is as much a feature request as it is a question.
I am using HighStock for comparative analysis, where it shows same number of series during different time periods, as shown in this fiddle.
It has multiple x and y axes. when I move mouse over the chart, it shows series wit value at mouse current location.
Problem:
Problem in this chart is, tooltip do not show values of all series, but a few and those series change in tooltip window. I want tooltip to show all series with corresponding or nearest point value at mouse location.
Another problem is with navigator, navigator is showing only dates corresponding to first x-axis it should show dates of all axes, stacked one above the other(like in chart),
Moreover, when I minimize the navigator window, it shorten only first x-axis but not all, I want it to shorten all x-axes. The said issue can be observed in following image.
When zooming to a single date on a column graph with two series one of the columns gets pushed outside of the chart drawing area.
You can see it in action here http://alfred.stlouisfed.org/graph/?g=Sfs
and here is a screenshot of the dev inspector highlighting where it appears off the graph edge
Has anyone seen this before? Or have any idea what settings may be affecting it? It works okay if you zoom out to two dates, but unfortunetly the product owners are insisting on only showing one date.
Thanks!
Every two columns of your data is for three months, not for a day. The chart selects a starting point for every timerange and sticks to it. If you zoom in the empty area in the scale of a day you will see nothing. So correct your data, or your scale of zooming.
I was trying candlestick chart using highchart ( highstock ) and find out that when I increase/decrease Navigator in candlestick chart the width of candlestick get changed. Sometime it display high, open, close and low for one hour interval whereas sometime it is displaying for month. I would like to grab these dynamically changed candlestick width ( not the pixel width but the real time interval) and display them in the chart title. Is there anyway I can get these information and update them dynamically in chart subtitle?
http://www.highcharts.com/stock/demo/candlestick
Thank You
What you are seeing are the effects of plotOptions.series.dataGrouping (API Reference) where the data is grouped and values are approximated to display the data faster. If you look at the example for units on the above linked page you'll find that you can determine and set what those groupings are. The grouping isn't truly dynamic, it's predefined.