Welcome Guest Search | Active Topics |

[SOLVED]sharing cross hair between 2 charts
d_vineet
#1 Posted : Saturday, August 10, 2013 12:48:44 AM(UTC)
Rank: Newbie

Groups: Registered
Joined: 7/15/2012(UTC)
Posts: 4

Thanks: 1 times
Was thanked: 0 time(s) in 0 post(s)
Thanks for viewing my question.
I have 2 charts.
Minimal code is reproduced as under.

How do I share the cross-hair between these 2 charts? (as shown in your samples for "stock data with volume").
Do I need to use "bind". I did not understand the code.
Currently separate cross-hairs are displayed for my 2 charts.

Code:
<script lang="javascript" type="text/javascript">
        $(document).ready(function () {
            $('#jqChart').jqChart({
          crosshairs: {
          enabled: true,
          snapToDataPoints: false,
          hLine: { visible: true, strokeStyle: 'red' },
          vLine: { visible: true, strokeStyle: 'red' }
      },
                series: [   
                            {
                                type: 'candlestick',
                                lineWidth: 1,
                                pointWidth: 0.5,
                                priceUpFillStyle: 'blue',
                                priceDownFillStyle: 'red',
                                strokeStyle: 'black',
                                data : mydata
                            },
                        ]
            });

            $('#jqChart2').jqChart({
          crosshairs: {
          enabled: true,
          snapToDataPoints: true,
          hLine: { visible: true, strokeStyle: 'red' },
          vLine: { visible: true, strokeStyle: 'red' }
      },
                series: [  {
                                type: 'spline',
                                markers: {
                                    size: 2,
                                    type: 'circle',
                                    strokeStyle: 'black',
                                    fillStyle: 'black',
                                    lineWidth: 1
                                },
                                lineWidth: 0.5,
                                pointWidth: 0.25,
                                strokeStyle: 'red',
                                data: perD
                            }
                        ]
            });
   
</script>

<div id="jqChart" style="width: 1800px; height: 800px;"></div>

<div id="jqChart2" style="width: 1800px; height: 800px;"></div>


Thanks,

Vineet
Dragan
#2 Posted : Monday, August 12, 2013 4:28:43 AM(UTC)
Rank: Advanced Member

Groups: Administrators, DataVizJavaScript, jQueryChart, jQueryDV, MvcChart, Registered
Joined: 1/3/2011(UTC)
Posts: 483

Thanks: 0 times
Was thanked: 87 time(s) in 87 post(s)
You can change your code to:

Code:
    <script lang="javascript" type="text/javascript">

        $(document).ready(function () {
            $('#jqChart').jqChart({
                crosshairs: {
                    enabled: true,
                    snapToDataPoints: true,
                    hLine: { visible: false },
                    vLine: { visible: true, strokeStyle: 'red' }
                },
                tooltips: {
                    type: 'shared'
                },
                series: [
                            {
                                type: 'candlestick',
                                lineWidth: 1,
                                pointWidth: 0.5,
                                priceUpFillStyle: 'blue',
                                priceDownFillStyle: 'red',
                                strokeStyle: 'black',
                                data: mydata
                            },
                ]
            });

            $('#jqChart2').jqChart({
                crosshairs: {
                    enabled: true,
                    snapToDataPoints: true,
                    hLine: { visible: false },
                    vLine: { visible: true, strokeStyle: 'red' }
                },
                tooltips: {
                    type: 'shared'
                },
                series: [{
                    type: 'spline',
                    markers: {
                        size: 2,
                        type: 'circle',
                        strokeStyle: 'black',
                        fillStyle: 'black',
                        lineWidth: 1
                    },
                    lineWidth: 0.5,
                    pointWidth: 0.25,
                    strokeStyle: 'red',
                    data: perD
                }
                ]
            });


            var isHighlighting = false;

            $('#jqChart').bind('dataHighlighting', function (event, data) {

                if (!data) {
                    $('#jqChart2').jqChart('highlightData', null);
                    return;
                }

                if (!isHighlighting) {

                    isHighlighting = true;

                    var index = $.inArray(data.dataItem, mydata);
                    $('#jqChart2').jqChart('highlightData', [perD[index]]);
                }

                isHighlighting = false;
            });

            $('#jqChart2').bind('dataHighlighting', function (event, data) {

                if (!data) {
                    $('#jqChart').jqChart('highlightData', null);
                    return;
                }

                if (!isHighlighting) {

                    isHighlighting = true;

                    var index = $.inArray(data.dataItem, perD);
                    $('#jqChart').jqChart('highlightData', [mydata[index]]);
                }

                isHighlighting = false;
            });
        });
    </script>
<div id="jqChart" style="width: 1800px; height: 800px;"></div>
<div id="jqChart2" style="width: 1800px; height: 800px;"></div>
Best Regards,
Dragan Matek
jqChart Inc.
1 user thanked Dragan for this useful post.
d_vineet on 8/13/2013(UTC)
d_vineet
#3 Posted : Tuesday, August 13, 2013 5:00:31 AM(UTC)
Rank: Newbie

Groups: Registered
Joined: 7/15/2012(UTC)
Posts: 4

Thanks: 1 times
Was thanked: 0 time(s) in 0 post(s)
Thank you Dragan. It worked.
I really appreciate your quick help.

--- Vineet
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

FlatEarth Theme by Jaben Cargman (Tiny Gecko)
Powered by YAF 1.9.4 | YAF © 2003-2010, Yet Another Forum.NET
This page was generated in 0.087 seconds.