I use Highstock (v4.2.3) to represent the data in StockChart with a series of different Y axes that are plotted in time on the X axis. The data has spaces, and I would like to draw those spaces, but when I turn on gapSize (with any value, non-zero), there is a strange quirk that causes problems with rendering the line - when using the navigator to increase on some date ranges (not all), in some cases (whose template I have not noticed yet) the chart cannot fully display the line along the entire axis x.
This annotated screenshot reflects the problem.
When I turn off gapSize (or explicitly set it to zero), this problem will disappear. Please note that the spaces themselves are displayed correctly on the chart (when switching to a date range that does not present a string rendering problem).
plotOptions: {
series: {gapSize:2}
}
Any ideas?
source
share