Vishalika
Members-
Content count
301 -
Joined
-
Last visited
Everything posted by Vishalika
-
How to Hide/Show bar in MSCombiDY2D chart
Vishalika replied to [email protected]'s topic in Miscellaneous
-
Hi, Glad to know that most of your issues are resolved. For the JSFiddle issues as stated by you I can give you suggestions written below: 1) No labels showing: http://jsfiddle.net/kv4j1dhh/, try setting the attribute "manageLabelOverflow": "0" in the chart element of your JSON/XML file. Since there is an issue related with "valuebgcolor" and "valuebordercolor" attribute when "manageLabelOverflow": "1". We are looking into it. Meanwhile, you can follow the suggestion. 2) Cut off labels: http://jsfiddle.net/kv4j1dhh/1/ , it is a limitation of our component. If you want to avoid the cut off label problem try setting the attribute "manageLabelOverflow": "1" . Refer this link: http://jsfiddle.net/vishalika/kv4j1dhh/3/ 3) Fiddle: http://jsfiddle.net/jocda03m/ , we are able to replicate this issue from our end. Will update you soon after fixing this. Hope this helps.
-
Hi, First of all I want to suggest you to upgrade to the newer version of FusionCharts v3.4.1. Since it will help you more with the design specification. As per your questions: 1. In a 2D line chart, is there a way to only show a border on the X and Y axis, but not the border on the two opposite sides? >> Trying setting the attribute “showXAxisLine” :”1” and “showYAxisLine” :”1” in the chart element of your JSON file. 2. Is there a way to force pie chart labels to never disappear off the side of the canvas? I currently have the following set: "enableSmartLabels":"1", "manageLabelOverflow": "1", "useEllipsesWhenOverflow": "0" This works in most instances, but if there is not room under a small slice, the label will still hang off (out of view) the right edge of the canvas. I'm currently hacking it to rotate the pie 180 degrees (so the small slices are all on the left side), but that won't work for all of my data sets. >>This has not been observed in the latest version,even if you are facing issues related to it try sending me a scaled down sample so that I can help you out properly. 3. Related to #2, can I simply declare where I would like the pie labels to sit on the graph instead? >> By default, it is placed in the chart via a line. And if you wan to place it as per your wish and requirement then FusionCharts offer a feature called Annotations, which helps you to dynamically place the pie labels also. 4. How can I make a very plain bar chart? I can't find where these option lie: I would like no division lines, just labels A visible X axis (line all the way across the bottom) Larger font on the labels Larger font on the bar value Bar value left aligned >> Glad to know that you resolved on your own, also if you try setting the attribute "numDivLine":"0" in the chart element of your XML/JSON file then also you can remove the div lines. A visible X-axis can be done by setting “showXAxisLine” :”1” in the chart element of you XML/JSON file. The bar values are always right aligned. If you want left alignment of values then you can place the data values using Annotations. Refer this documentation link: http://docs.fusioncharts.com/tutorial-attr-bar2d.html Refer this link for Annotations: http://docs.fusioncharts.com/tutorial-advanced-charting-annotations.html Explore the JSFiddle for configuring your charts: http://www.fusioncharts.com/developers/javascript-chart-fiddles/configuring-your-chart/ Hope this helps.
-
paletteColors of Chart Object do not work dynamically
Vishalika replied to Nivedita's topic in Using PowerCharts XT
Hi, It is possible to dynamically change the palette colors in Radar chart. As per your code snippet, you are trying to change the palette colors during the chart loading. To dynamically change the attribute, try adding a radio-button or checkbox to see the change properly. If you can provide me the proper code snippet I can help you out more. And using the setChartAttribute you can change the palette colors of the chart. Check out this sample JSFiddle link : http://jsfiddle.net/vishalika/8tyfdqfa/ Hope this helps.- 2 replies
-
- PowerCharts
- RadarChart
-
(and 1 more)
Tagged with:
-
How to Hide/Show bar in MSCombiDY2D chart
Vishalika replied to [email protected]'s topic in Miscellaneous
Hi, As per your requirement, to hide the last year data via check box cannot be fulfilled since the attribute of each dataset of the MSCombiDY2D cannot be accessed separately. But to hide the data set initially, you can try setting the attribute "initiallyHidden": "1" in the data set element of the respective series. Also, the click of legend will help you to hide the data set you want to hide. A sample JSFiddle link :http://jsfiddle.net/vishalika/wwjrq0jc/ Hope this helps. -
Is there a way to replicate the following horizontal graph?
Vishalika replied to ranuka's topic in General usage
Hi, Welcome to FusionCharts Forum. Your requirement can be fulfilled by FusionCharts. Referring to the image you have attached I can suggest you to render the 'stackedbar2d' along with the attribute "stack100Percent": "1" in the chart element of your XML/JSON file. It is better known as 100% stacked chart in our product. A sample JSFiddle link has been attached for your reference: http://jsfiddle.net/vishalika/5pq81mqt/ You can also include a feature present in FusionCharts to customize your chart that is called Annotations. As per your chart, you have to use Text Annotations only. Refer these links for Annotations: 1) http://docs.fusioncharts.com/tutorial-advanced-charting-annotations.html 2) JSFiddle link: http://jsfiddle.net/fusioncharts/Yq4EK/ Hope this helps. -
Hi, As per your code snippet, I tried with your JSON data and it worked fine from our end. I have attached the screenshot of the chart rendered in Firefox.
-
Glad to know that your issue is resolved.
-
Hi, In FusionCharts v3.4, the tool tip in Trendlines is working perfectly fine. Using the attribute 'toolText' in the chart element of your XML/JSON file will help you to set it. Refer this sample link: http://jsfiddle.net/vishalika/kudo343w/ Hope this helps.
-
Hi, In FusionCharts v3.4, you can configure your tool tips using HTML tags as well. Using the plotToolText attribute, you can format the text as bold or italics. You can also add padding around the tool tip box using this attribute. Refer this link for Tool tips: http://docs.fusioncharts.com/tutorial-configuring-your-chart-tool-tips.html Refer this sample for configuring Tool tips: http://jsfiddle.net/vishalika/Lu4rho12/ Hope this helps.
-
Hi, The legend icon is already defined as per the chart type supported. The attributes lineDashGap and lineDashLen set the cosmetic properties of the chart. These are not dependent on the legend of the chart. If you want to reflect your change in legend, you can try out using a feature called Annotations. Annotations are user-defined objects or shapes drawn on a chart. Annotations are often required to make interpretation of the chart easy for the end user. Refer these links for Annotations: 1) http://docs.fusioncharts.com/tutorial-configuring-your-chart-annotations.html 2) http://docs.fusioncharts.com/tutorial-advanced-charting-annotations-introduction.html Hope this helps.
-
Hi Gayathri, As per you XML data, I have rendered a pyramid chart and it is working perfectly fine without any modification. I have attached the sample created. Hope it helps. Pyramid.zip
-
Hi Gayathri, The above solution provided should work since from our end such case has not occurred. Can you please share your data through JSFiddle link so that I can try to replicate the issue from my end? Awaiting response.
-
Hi, In FusionCharts v3.4, you can make you charts clickable with the option available. According to your requirement you can click any dataset in the Stacked Area 2D chart and call the Javascript function. A 'link' attribute is set in each set elelment of your XML file or data element of your JSON file.. You can also use 'Anchors' to distinguish the link point. To obtain such try setting the attribute "drawAnchors": "1", "anchorAlpha": "100" in the chart element of your JSON/XML file. A sample has been attached to fulfill your requirement. Hope this helps. 16139.zip
-
Possible to set label color on a per-label basis?
Vishalika replied to Cannikin's topic in General usage
Hi, Welcome to FusionCharts Forum. FusionCharts do not support any attribute to customize the chart label attribute on Multi-level pie chart. However you can do so with the help of Annotations. These are often required to make interpretation of the chart easy for the end user. Refer these links for Annotations: 1) http://docs.fusioncharts.com/tutorial-configuring-your-chart-annotations.html 2) http://docs.fusioncharts.com/tutorial-advanced-charting-annotations-dynamically-positioning-annotations-using-macros.html Refer this link: http://jsfiddle.net/vishalika/HBMQ7/4/ Hope this helps. -
Hi Gayathri, To display Inverse Pyramid Chart, you can try out the Funnel Chart in FusionCharts Suite and check if it would meet your requirement. The color attribute can be changed in each data element using the attribute 'color' in the XML/JSON file. Check out this fiddle: http://jsfiddle.net/vishalika/wgfs39qf/1/ Hope this helps.
-
Hi, In the latest version of FusionCharts v3.4, the Angular gauge chart is working fine in case of 'Exporting the chart'. The download menu is not shown in the upward direction in browser IE 8,10,11. Can you tell me the version of FusionCharts you are using? Also, tell me the width and height of the chart?
-
how to center cylinder gauge in parent container?
Vishalika replied to lucy_^^'s topic in Using FusionWidgets XT
Hi, Improvement for the alignment of the cylinder gauge is already logged. However, you can try setting the ""chartLeftMargin":"500", "chartRightMargin":"500" in the chart element of your JSON/XML file. Hope this helps. -
Hi, Currently, we don't have any suggestion for this. We have logged an improvement for this feature in Zoomline charts. Will keep you updated.
-
Hi Arshad, Welcome to FusionCharts Forum. In drag node chart , you have to specify the x and y position in set node.
-
How to Show only Legend Icon without any label
Vishalika replied to chanda shirisha's topic in General usage
Hi, Thanks for your response. -
Javascript Fusion Chart- Anchor Tooltip for lines are overlapping
Vishalika replied to chabukswar's topic in FusionCharts and JSP
Hi, In Zoom line chart the data values adjacent to each other are likely to overlap. The feature showcased in Zoom line JavaScript chart is the cross hair implementation. So, it is not feasible to avoid overlapping of adjacent data values. Hope this helps. -
Font size of node label/name cant be change
Vishalika replied to Rajavelu's topic in Using PowerCharts XT
Hi, The "valueFontSize" attribute works with latest version of FusionCharts v3.4 Download the latest trial version of FusionCharts v3.4 at http://www.fusioncharts.com/download/ Hope it helps. -
Font size of node label/name cant be change
Vishalika replied to Rajavelu's topic in Using PowerCharts XT
Hi, To increase the font size the attribute 'baseFontSize' is working fine for the node. But for the connector labels we are looking into it. Also, separately you can try increasing the attribute 'valueFontSize' for the node in the chart element of your XML/JSON file. Sample link: http://jsfiddle.net/vishalika/S84S8/8/ Hope this helps. -
Scroll Event not fired in ZoomLine Charts
Vishalika replied to whoispankaj's topic in Javascript Problems
Hi Pankaj, Welcome to FusionCharts Forum. Please upgrade the FusionCharts Suite to FusionCharts v3.4. Check if this issue of Zoomline Chart is resolved. Download link: http://www.fusioncharts.com/download/ Hope this helps.