[ 4 posts ]

William Mo

  • Joined: Sat Mar 10, 2012 7:39 am
  • Posts: 2
  • Offline
  • Profile
Tags:

How to add a horizontal scrollbar to a column chart?

Post Posted: Sat Mar 10, 2012 7:44 am
+0-
Is there a config to add a horizontal scrollbar to a column chart?
I added the style overflow:scroll to the parent div of the chart, but it did not work.

BTW, i am using yui3.

thx in advance.

Tripp Bridges

YUI Developer

  • Username: tripp
  • Joined: Wed Jan 07, 2009 1:54 pm
  • Posts: 435
  • GitHub: tripp
  • Gists: tripp
  • YUI Developer
  • Offline
  • Profile

Re: How to add a horizontal scrollbar to a column chart?

Post Posted: Sat Mar 10, 2012 2:45 pm
+1-
Try using an outer div for setting scroll. Below is sample css, html and javascript that would accomplish scrollbars.

Code:
/* css */
#mychartouter {
    position: absolute;
    top: 50px;
    left: 50px;
    width:400px;
    height:350px;
    overflow: scroll;
}
#mychartinner {
    width:750px;
    height:350px;
}

<!--html-->
<div id="mychartouter">
<div id="mychartinner"></div>
</div>

//Javascript
var myChart = new Y.Chart({
                    type: "bar",
                    categoryKey: "date",
                    dataProvider:myDataValues,
                    render:"#mychartinner"
                });


Thanks,
Tripp

William Mo

  • Joined: Sat Mar 10, 2012 7:39 am
  • Posts: 2
  • Offline
  • Profile
Tags:

Re: How to add a horizontal scrollbar to a column chart?

Post Posted: Sat Mar 10, 2012 6:32 pm
+0-
It does work!cool!but just a little problem, the rightmost tooltip will be covered by the parent div.

thx tripp.

Tripp Bridges

YUI Developer

  • Username: tripp
  • Joined: Wed Jan 07, 2009 1:54 pm
  • Posts: 435
  • GitHub: tripp
  • Gists: tripp
  • YUI Developer
  • Offline
  • Profile

Re: How to add a horizontal scrollbar to a column chart?

Post Posted: Mon Mar 12, 2012 8:48 am
+0-
There is a discussion on this thread for changing the positioning algorithm of the tooltip.
http://yuilibrary.com/forum/viewtopic.php?f=92&t=8256&p=26509&hilit=chart+tooltip#p26509

Post back if you run into any issues.

Thanks,
Tripp
  [ 4 posts ]
Display posts from previous:  Sort by  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum