-
Content count
152 -
Joined
-
Last visited
Everything posted by Nabajeet
-
Hi, You can use canvasTopMargin to set some padding at the top of the chart so that the data plots do not overlap, which is causing the problem.
-
Hi, Stacked Charts does not support valuePosition, a workaround shall be to use annotations.
-
Hi Jason, FusionCharts do not have any charts that exactly meets your requirements, but you can try out MSStackedColumn2DLineDY. Please find a demo in this fiddle: http://jsfiddle.net/nabajeet_fusioncharts/pb5gzpau/
-
Fusion chart export functionality with jquery tab
Nabajeet replied to onkar's topic in FusionCharts and ASP.NET
Hi, When using tabs, only the chart which is on the visible tab can be exported because Fusion Charts export component need to capture the chart and this can be done only for the visible chart. -
Hi Vishnu, Version 3.4.1 supports only JavaScript rendering and thus Flash Charts are no longer supported. Styles tags were for Flash charts and since flash charts are no longer supported style tag has been deprecated. you can use the following to set the font of the data values: valueFont, valueFontColor, valueSize, valueFontBold, valueFontItalic, valueAlpha, valueFontAlpha and for captions: captionAlignment, captionOnTop, captionFontSize, subCaptionFontSize, captionFont, subCaptionFont, captionFontColor, subCaptionFontColor, captionFontBold, subCaptionFontBold, alignCaptionWithCanvas, captionHorizontalPadding in the chart attribute.
-
Hi, By property of the charts only the value of the chart which is declared last shall be displayed in the tooltips if a number of data points overlap each other. The only solution is to add static tooltext( including the text you want to add) to that category where the data values overlap.
-
Hi, We suggest you to figure out x and y coordinates of the position of the chart where you want to display the dial value, it should work for you because the X and Y coordinate will be relative only to the chart concerned and if you have more than one charts it shall not effect the others or any other elements of the web page.
-
Hi, Welcome to FusionCharts Forum. If you want to show the dial value below the pivot, you can set: <chart ... valueBelowPivot='1' ...> Also, you can configure the x and y position as under: <dials> <dial value="92" ... showValue="1" valueX="150" valueY="120"/> <dial value="79" ... showValue="1" valueX="210" valueY="120"/> </dials>
-
Hi Paul, Can you share with us a use case of how your collaboration tool works, and how you programmatically render it on a different browser.
-
Hi Paul, Thank you for your suggestion, we shall let you know if this feature can be implemented in the near future.
- 3 replies
-
- slicingStart
- slicingEnd
-
(and 2 more)
Tagged with:
-
Allow programmatic highlighting of charts
Nabajeet replied to paulguz's topic in Suggestions & Requests
Hi Paul, We shall forward your requirement to the engineering team and let you know if your requirement can be implememted. -
Hi Paul, To highlighted a part of the chart programatically you have to re render the whole chart using methods like setChartData and set a highlighted color for that particular set captured using dataPlotRollOver. But you may face some performance issues as the whole chart is re rendered.
-
Tooltext overflowing container in Internet Explorer 9
Nabajeet replied to mexicocitibluez's topic in Bug Reports
Hi, Please upgrade to the latest version of FusionCharts XT suite, that shall solve your problem. -
Hi, Updating specific values inside the dataset is not possible, with setChartData all the chart properties must be set. You can use setXMLURL/setJSONURL and other such methods but these too shall update the whole chart.
-
Fusion Map - Show Labels at Data level not working
Nabajeet replied to meghana's topic in Using FusionMaps XT
Hi, Please confirm if your issue has been been resolved. -
Is Zoom-line chart type support for drill-down(link)
Nabajeet replied to Manjuanth's topic in Miscellaneous
Hi, Zoom-line charts do not support drill-down link feature. Sorry for your inconvenience -
Ok, please let us know if you have any further queries.
-
X axis lables missing when using Javascript (HTML5) vs Flash for RealTimeArea
Nabajeet replied to fernweh's topic in Bug Reports
Glad that your problem was solved. To download the Evaluation version of FusionCharts Suite XT v3.4.1, please visit the link: http://www.fusioncharts.com/download/- 13 replies
-
- RealTimeArea
- Flash
-
(and 3 more)
Tagged with:
-
Hi Vladimir, You can use the link property in the data set to create links to any external pages. Please check out this fiddle for a demo: http://jsfiddle.net/nabajeet_fusioncharts/sqpor2o7/1/ Hope this helps.
-
Hi Alex, Can you share a sample of your code in forum or else you can mail it to support.
-
can't drag the zoomline chart up/down on mobile phone
Nabajeet replied to rock.huang's topic in General usage
Hi, Please try upgrading to the latest version of FusionCharts if you are using older versions and let us know if your issue is being resolved. -
Hi Alex, There should not be a problem in displaying the tooltips if the chart is rendering properly, please check that the FusionCharts JavaScript library is properly installed and also do check its version.You can also try setting "tooltext" in individual set elements to show custom tooltips. Can you please share more about the environment where the issue is being faced? Hope this helps.
-
Hi, This option is not available in Waterfall charts, to achieve this you can use annotations. Please check this fiddle for a demo: http://jsfiddle.net/nabajeet_fusioncharts/z4jwkh3n/3/ Hope this helps