﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>FusionCharts Forum / FusionCharts v3 / Bug Reports  / Mouse scroll disabled on pie charts / Latest Posts</title><generator>InstantForum.NET v4.1.4</generator><description>FusionCharts Forum</description><link>http://www.fusioncharts.com/forum/</link><webMaster>support@fusioncharts.com</webMaster><lastBuildDate>Tue, 02 Dec 2008 06:49:04 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Mouse scroll disabled on pie charts</title><link>http://www.fusioncharts.com/forum/Topic3398-6-1.aspx</link><description>I found the problem Pallav. Because we also have a hovering DIV in the report, we need to use the param &lt;FONT size=2&gt;&lt;P&gt;piechart.addParam(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"wmode"&lt;/FONT&gt;&lt;FONT size=2&gt;, &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"transparent"&lt;/FONT&gt;&lt;FONT size=2&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size=2&gt;If this parameter is set, any mouseover on the flashchart will capture all mouse event, without clicking first.&lt;BR&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;I think a solution like i've posted before could be a way to tackle this problem.&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;/P&gt;&lt;/FONT&gt;</description><pubDate>Mon, 07 Jan 2008 06:32:23 GMT</pubDate><dc:creator>Bjorn</dc:creator></item><item><title>RE: Mouse scroll disabled on pie charts</title><link>http://www.fusioncharts.com/forum/Topic3398-6-1.aspx</link><description>Well, I saw the demo on &lt;A href="http://www.fusioncharts.com//Demos/Blueprint/"&gt;http://www.fusioncharts.com//Demos/Blueprint/&lt;/A&gt; and on this page the mouseclick does work. So I am going the check what the difference is between my code, and the code online.</description><pubDate>Mon, 07 Jan 2008 03:32:40 GMT</pubDate><dc:creator>Bjorn</dc:creator></item><item><title>RE: Mouse scroll disabled on pie charts</title><link>http://www.fusioncharts.com/forum/Topic3398-6-1.aspx</link><description>Bjorn,&lt;br&gt;&lt;br&gt;I've asked our developers to look into it and would get back to you ASAP.</description><pubDate>Mon, 07 Jan 2008 02:36:02 GMT</pubDate><dc:creator>Pallav</dc:creator></item><item><title>RE: Mouse scroll disabled on pie charts</title><link>http://www.fusioncharts.com/forum/Topic3398-6-1.aspx</link><description>Hi Pallav,&lt;/P&gt;&lt;P&gt;The "you'll need to click outside the pie chart once and then scroll" method only works when you're using the &amp;lt;object&amp;gt; tag, But when I use the javascript approach, clicking outside the chart doesn't make any difference. And i really want to use the javascript method ;)&lt;/P&gt;&lt;P&gt;Is there a work arround, or maybe in an update, you could add an extra tag called "disableMouseEvents" or something like that? Just thinking out loud..</description><pubDate>Thu, 27 Dec 2007 08:02:30 GMT</pubDate><dc:creator>Bjorn</dc:creator></item><item><title>RE: Mouse scroll disabled on pie charts</title><link>http://www.fusioncharts.com/forum/Topic3398-6-1.aspx</link><description>Hi,&lt;br&gt;&lt;br&gt;In the pie chart, we handle mouse events internally to support slicing and rotation. As such, you'll need to click outside the pie chart once and then scroll.</description><pubDate>Fri, 21 Dec 2007 13:16:50 GMT</pubDate><dc:creator>Pallav</dc:creator></item><item><title>Mouse scroll disabled on pie charts</title><link>http://www.fusioncharts.com/forum/Topic3398-6-1.aspx</link><description>OS: Windows XP and Vista&lt;BR&gt;browser: IE7&lt;P&gt;I created a chart with the following javascript:&lt;BR&gt;&lt;FONT color=#0000ff size=2&gt;[code]&lt;BR&gt;&amp;lt;&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;script&lt;/FONT&gt;&lt;FONT color=#000000 size=2&gt; &lt;/FONT&gt;&lt;FONT color=#ff0000 size=2&gt;language&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;="javascript"&lt;/FONT&gt;&lt;FONT color=#000000 size=2&gt; &lt;/FONT&gt;&lt;FONT color=#ff0000 size=2&gt;type&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;="text/javascript"&amp;gt;&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;var&lt;/FONT&gt;&lt;FONT size=2&gt; piechart_typeReferer = &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;new&lt;/FONT&gt;&lt;FONT size=2&gt; FusionCharts(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"/charts/v3/pie3d.swf"&lt;/FONT&gt;&lt;FONT size=2&gt;, &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"mychartId_typeReferer"&lt;/FONT&gt;&lt;FONT size=2&gt;, &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"100%"&lt;/FONT&gt;&lt;FONT size=2&gt;, &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"160"&lt;/FONT&gt;&lt;FONT size=2&gt;, &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"0"&lt;/FONT&gt;&lt;FONT size=2&gt;, &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"0"&lt;/FONT&gt;&lt;FONT size=2&gt;);&lt;BR&gt;piechart_typeReferer.addParam(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"wmode"&lt;/FONT&gt;&lt;FONT size=2&gt;, &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"transparent"&lt;/FONT&gt;&lt;FONT size=2&gt;);&lt;/P&gt;&lt;P&gt;piechart_typeReferer.setDataXML(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"&amp;lt;graph&amp;gt;&amp;lt;set value='10'/&amp;gt;&amp;lt;set value='10'/&amp;gt;&amp;lt;/graph&amp;gt;"&lt;/FONT&gt;&lt;FONT size=2&gt;); &lt;/P&gt;&lt;P&gt;piechart_typeReferer.render(&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;'typeReferer_chart'&lt;/FONT&gt;&lt;FONT size=2&gt;);&lt;BR&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&amp;lt;/&lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;script&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&amp;gt;&lt;BR&gt;[/code]&lt;BR&gt;&lt;BR&gt;And placed some extra &amp;lt;br/&amp;gt; on the page so the page is longer than the screen. &lt;BR&gt;Everything looks fine until I try to use the scrollbutton when I'am hovering over the flash chart. At that moment the scroll button is disabled (On both the 2d and 3d piechart).&lt;BR&gt;I've used the same page to load an Line chart, and then the problem doesn't occur. The problem also doens't occur when I'am using the pie chart and watch the page in Firefox.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color=#0000ff size=2&gt;Is this normal behaviour, and if so, how can i avoid it?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color=#0000ff size=2&gt;Thanks in advance.&lt;/P&gt;&lt;/FONT&gt;</description><pubDate>Tue, 18 Dec 2007 03:01:52 GMT</pubDate><dc:creator>Bjorn</dc:creator></item></channel></rss>