-
Content count
2,213 -
Joined
-
Last visited
-
Days Won
14
Everything posted by Sanjukta
-
Hi, Could you please set "drawLine" attribute to '1' in the <dataset> element where you wish to draw the line connecting the scatter plots? Ex: <dataset ... drawLine='1'> In case we are unable to comprehend your query, please provide us with a screenshot of your requirement. Hope this helps.
-
Hi, Please check with the sample mentioned in the following link for details on the usage of "configureLink()" function by right-clicking to view the Page source to see the code. Ref.- http://docs.fusioncharts.com/charts/Code/JavaScript/Basics/UsingLinkedCharts/linked-charts-config-basic-xml.html Also, you would be able to find the sample implementation in the FusionCharts XT Download Package in the following path. Ref.- Download Package >> Code >> JavaScript >> Basics >> UsingLinkedCharts >> linked-charts-config-basic-xml.html Hope this helps.
-
Hi, Glad that your issue is resolved. Happy FusionCharting!
-
Hi, Please note that we currently do not have any Combination chart that would support displaying the lines on the columns in the way you intend to. However, you can check with the Combination 2D chart and see if this fulfills your requirement. Ref.- http://www.fusioncharts.com/demos/gallery/combination-single-y/chart.asp?id=stackedcolumn2dline_1 Hope this helps.
-
Hi, Please note that FusionCharts JavaScript class allows you to change various settings and properties of an existing chart. You can dynamically update chart's root properties (also known as "chart attributes" which are passed through <chart> element in chart XML data or through chart property in chart's JSON data) on-the-fly. For further details on the above, please refer to the following link. Ref.- http://docs.fusioncharts.com/charts/contents/?JavaScript/JS_ChangeChartProperties.html Hope this helps.
-
Hi, Could you please confirm if you are using the latest version of FusionCharts, i.e, FusionCharts XT (v3.3.0)? In case not, please upgrade your current version to the latest and see if this helps. Ref.- http://www.fusioncharts.com/download/trials/ Hope this helps.
-
Hi, We are able to export both the Flash and JavaScript version of SSGrid with the dimensions of 60o pixels (width) and 2200 pixels (height). However, the chart had been exported successfully. Could you please try using the following attributes and call the "exportChart()" function to export and see if this helps? Ref.- <chart... exportEnabled='1' exportHandler='http://export.api3.fusioncharts.com/' exportAction='download' > Hope this helps.
-
Hi, FusionCharts XT Grid Component does not support exporting to image or PDF, as of now.
-
Hi, Please note that FuisonCharts does not provide any security system to restrict the usage of files. We would provide you with the files when you purchase the license. The usage and storing securities needs to be provided from your end as per your requirement. For the evaluation version, the charts do not have any visual or functional difference. Only the evaluation charts are watermarked which is not visible in the licensed version. Hope this helps.
-
Hi, Could you please send us the scaled-down sample at "[email protected]" so that we might test it? Awaiting your reply.
-
Hi, Could you please upgrade your current version to the latest version, i.e, FusionCharts XT (v3.3.0) and see if this resolves the issue? Ref.- http://www.fusioncharts.com/download/trials/ Hope this helps.
-
HI, Glad that your issue is resolved. Happy FusionCharting!
-
Hi, Could you please try using a JavaScript function as link that would return the label and value or any data that you would use there, for the particular data plot/point that is clicked at that moment, using the FusionCharts Drill Down feature? Ex: <set label='USA' value='235' link="j-myJS-USA,235"/> In the above code snippet, "myJS" refers to a custom JavaScript function present in the HTML page that embeds this chart and "USA,235" is the parameter value passed to the function. You can pass only a single String parameter to this function. When you now click the data item (column, pie, bar etc.) for this particular data, "myJS" function will be invoked and 'USA, 235' will be passed to the function as the function parameter. Here, we have passed the data label and value just for demonstration purposes. In actual charts, you can pass identifier numbers or strings of each data. When the user clicks on the link, these identifiers can be sent back to your JavaScript function for further actions (like loading detailed data for that identifier using AJAX or anything - the possibilities are endless). For further details on the above, please refer to the following link. Ref.- http://docs.fusioncharts.com/charts/contents/?DrillDown/JavaScript.html Hope this helps.
-
Everything Works Great Except Ie8 Rendering.
Sanjukta replied to artur_mkrtchyan's topic in Bug Reports
Hi, We have replied to your query in this Forum Link. Please refer to this and share your feedback. Awaiting your reply. -
Hi, Please note that you can test the Logarithmic charts by downloading the latest Evaluation version of PowerCharts XT (v3.3.0) with the help of the following link. Ref.- http://www.fusioncharts.com/download/trials/ However, please note that you would only receive the latest version available when downloaded or purchased. We generally do not provide older version of FusionCharts Suite XT as we had performed various fixes and improvements in the latest version that might appear as issues when older version is used. In case you have any further queries and wants us to reply to it with respect to your Order ID, please mail us at [email protected]. Hope this helps.
-
Issue With Fusioncharts 3.2.4 Sr1 On Ie8 And Javascript Renderer
Sanjukta replied to roberkules's topic in Javascript Problems
Hi, Could you please try using the attached JSON data (remove .txt extension) and see if this helps? Using the attached JSON data, the chart is rendered perfectly in the JavaScript version in IE 8. Please check with the attached screenshot for your reference. Hope this helps. SampleData.json.txt -
Hi, Could you please try using the following code snippet in your "Default.aspx" page and see if this helps? Ex: <form id="form1" runat="server"> <div> <asp:Literal ID="Literal1" runat="server"></asp:Literal> <script type="text/javascript"> ChartID.configureLink( { swfUrl: 'FusionCharts/Pie3D.swf', width: '30%', overlayButton: { message: 'Back Button', bgColor: '999999', borderColor: 'cccccc', fontColor: 'FF0000', padding: '10' } }, 0); </script> </div> </form> Hope this helps.
-
Hi, We are looking into this as my colleague had mentioned in the previous post. Meanwhile, could you please upgrade your current version to the latest version, i.e, FusionCharts XT (v3.3.0) and see if this resolves the issue? Ref.- http://www.fusioncharts.com/download/trials/ Awaiting your reply.
-
hi, Thank you for your suggestion! We have made a note of the same and update it in our feature wishlist. Currently, FusionCharts only supports exporting charts as Images to PDF which can be integrated into the Excel reports, using some code at your end. Hope this helps. Thank you for your continued support.
-
Hi, Please note that it seems the values in your <set> elements are specified as 136, 128, etc. Hence, it would not be able to display the decimal in any other position that is not corresponding to the value. In case you wish to display custom values on the column plots, please try using "displayValue" in the <set> element. Ex: <set ... value='136' displayValue='13.6' > In case this does not help, please send us your complete generated XML so that we might test it. Hope this helps.
-
Hi, Please note that in LinkedCharts, by default, the descendant charts used the same configuration and chart type as parent chart. However, FusionCharts JavaScript class allows you to configure each aspect of the descendant charts LinkedCharts using the function "configureLink()" for each chart instance. Using this function, you can pass all your desired configurations for the descendant charts. Ref.- http://docs.fusioncharts.com/charts/contents/?JavaScript/API/Methods.html#configurelink You can pass all the properties that a FusionCharts constructor accepts. Ref.- http://docs.fusioncharts.com/charts/contents/?JavaScript/API/Methods.html#chartparams Additionally, you can also configure the overlay button using "overlayButton" property. Ref.- http://docs.fusioncharts.com/charts/contents/?JavaScript/API/Methods.html#overlaybutton Hope this helps.
-
Json Serialization With .net Typenamehandling
Sanjukta replied to Jim van Gulik's topic in Suggestions & Requests
Hi Jim, Glad that your issue is resolved. Happy FusionCharting! -
Ajax - Update Panel Problem ? Help
Sanjukta replied to cranberries__089's topic in FusionCharts and ASP.NET
Hi, Could you please try checking on what all you are receiving while disposing the chart using "FusionCharts.items[...]"? FusionCharts.items[] is an associative array that stores all the charts rendered in a page. The DOMId is represented by the key and the JavaScript chart object is the respective value. If you pass the DOMId of the chart to this array, you will get the reference to the JavaScript Object of the related chart. Ex: var chart = FusionCharts.items["myChartId"]; Awaiting your reply. -
Hi, Welcome to FusionCharts Forum! Could you please try setting "yAxisMinValue='0.5' " and "yAxisMaxValue='1.0' " in the <chart> element of the XML and see if this helps? Ex: <chart ... yAxisMinValue='0.5' yAxisMaxValue='1.0' > Hope this helps.
-
Hi, Could you please try setting the following attributes in the <chart> element of the Pie chart XML and see if this helps? Ex: <chart ... slicingDistance='0' enableSlicing='0' enableRotation='0'> Hope this helps.