Leo_T
Members-
Content count
9 -
Joined
-
Last visited
About Leo_T
-
Rank
Forum Newbie
-
The enableSlicing='0' worked. This setting is difficult to find, i imagine its because its relatively new. Thanks for your help
-
Hi, can you please tell me how to disable pie slice explosions. I've tried all the following, each with different boolean values : enableRotation = '0', animation = '0', defaultAnimation = '0', interactiveLegend = '0' I've even tried isSliced='0' on all set values. But to no avail, no matter what the settings, I'm still able to click on a slice and it will explode. Any ideas? Thanks
-
Thank you very much for your help.
-
Thank you for your help Everything you explained worked perfectly but only for 2D bars. All those settings are completely ignored when I use 3D bars. It uses its default gradient color no matter what I put. My main objective is to have my 3D bar charts use plain non-gradient colors like image 4. Do you have an idea how can I do that with 3D bar ?
-
Hi, I'm hoping you can help me with this, I've looked at the documentation but couldn't pinpoint the answer. If you see my images, you will see that chart 1 seems to have gradient bar colors. Chart 2 appears to have a glossy look. And chart 3 has simple plain colors. My question is, how do achieve these different bar color looks? Is there a useGlossyLook=1 or usePlainColor=1 setting? My bar always uses the "gradient" look by default. I'm using FC javascript v3.2.2 Any help would be appreciated. My code var myChart = new FusionCharts( "Bar2D", "myChartId", 400, 400, "0", "0" ); <chart numberPrefix='' showToolTip='0' animation='0' > <set label='Point1' value='111' /> <set label='Point2' value='92' /> <set label='Point3' value='253' /> <set label='Point4' value='54' /> <set label='Point5' value='155' /> </chart>
-
Hi, can you please tell me if there is a way in FusionCharts Jscript(latest version) to make the gridlines disappear/hidden. Similar to the hidden gridlines on the attached image. Any help would be appreciated. Thanks
-
Hi, is there a setting for "source" on FusionCharts? Something similar to caption or subcaption but for displaying the source of the data on the chart. Please take a look at my attachment & look at the "Data comes from the New York Times" text. How could I do this in FusionCharts? Thanks
-
Hi, I need to pass the rendered chart to a popup window (preview page). Has this ever been done? All the examples I've seen up to now only deal with the chart being generated in a div inside the html page you are currently on. Currently, I have a page where a user clicks a generate graph button and then the chart shows up in the div inside that page. Page1.html <div id="chartContainer"> FusionCharts will load here! </div> But on page1.html, I want to also add a preview link that will open a new html page & display the chart in that new popup html page. Any help would be appreciated. Thanks