Completed
Last Updated: 09 Nov 2015 12:43 by ADMIN
ADMIN
Stamo Gochev
Created on: 23 Sep 2014 06:15
Category: HtmlChart
Type: Bug Report
0
Series tooltips are not visible in a data navigation scenario when the same series is added to the PlotArea and the Navigator
Series tooltips are not visible in a Stock chart when the same series is added programmatically in the plotarea and the navigator simultaneously.

The workaround is to:
1) Create different series for the plot area and the navigator.
2) Explicitly set the tooltips' visibility with JS like this:
        <script type="text/javascript">
            function pageLoad() {
                var chart = $find("Chart");
                var series = chart._chartObject.options.series[0];
                series.tooltip.visible = true;
                //repaint the chart to apply the changes
                chart.repaint();
            }
        </script>

0 comments