-
Content count
135 -
Joined
-
Last visited
Everything posted by Bindhu
-
Hi, Can you please share the XML data for testing purposes? You may refer to the sample XML data below, <chart caption='Sales Volume' PYAxisName='Revenue' SYAxisName='Quantity' showvalues='0' numberPrefix='$' plotSpacePercent='-50'> <categories> <category label='Jan' /> <category label='Feb' /> <category label='Mar' /> <category label='Apr' /> <category label='May' /> </categories> <dataset seriesName='Quantity' parentYAxis='S' renderAs='column'> <set value='340' /> <set value='120' /> <set value='280' /> <set value='270' /> <set value='430' /> </dataset> <dataset seriesName='Revenue'> <set value='170' /> <set value='610' /> <set value='142' /> <set value='135' /> <set value='214' /> </dataset> </chart> Please find attached screen shot of the chart rendered. Hope this helps!
-
Hi, You may use JavaScript code to get the selected value. Ref. Code: <select id="dropDown"> <option value="1">option 1</option> <option value="2" selected="selected">option 2</option> <option value="3">option 3</option> </select> Running this code: var e = document.getElementById("dropDown"); var selectedOption= e.options[e.selectedIndex].value; .value will return 2. If what you actually want is 'option 2', then do this: var e = document.getElementById("dropDown"); var selectedText= e.options[e.selectedIndex].text; Pass this to myChart.setChartAttribute( "caption" , selectedText); Hope this helps!
-
Hi, Create an extra vLine between the vLines and show label of the extra vLine while hiding the vLine. To hide the vLine, set alpha to 0. Ref. Code: <vLine color='000000' thickness='2' labelPosition='1' showLabelborder='0' alpha='0' linePosition='1' label='Mar'/> Hope this helps!
-
Chart rerender when one of the item on the legend is hidden
Bindhu replied to srpokala's topic in General usage
-
Hi, We will not be able to support any further on this as the conversion logic is within the flash file. Hope this clarifies.
-
Hi, Render the secondary axis dataset as Column and set plotSpacePercent to a negative value. Ref. Code: <chart caption='Sales Volume' PYAxisName='Revenue' SYAxisName='Quantity' showvalues='0' numberPrefix='$' plotSpacePercent='-50'> .... <dataset seriesName='Quantity' parentYAxis='S' renderAs='Column'> .... </chart> Hope this helps!
-
Hi, You may try using vertical lines to suffice your requirement. Please find attached sample XML and image of the chart rendered using the sample XML. Hope this helps! Workaround.xml
-
Hi, Please download the FusionCharts XT package and you may find the Script in the FusionCharts XT>> Tools>> XMLGen folder. Please check if it helps!
-
Chart rerender when one of the item on the legend is hidden
Bindhu replied to srpokala's topic in General usage
Hi, You may get the chart id using the code below, function LegendItemClickedFunction(eventObject,argumentsObject) { alert(eventObject.sender.attributes.id); // gives the chart id } Hope this helps! -
Hi, Welcome to FusionCharts Forum We do not support this feature, as of now. Hope this clarifies.
-
Chart rerender when one of the item on the legend is hidden
Bindhu replied to srpokala's topic in General usage
Hi, You may refer to the sample attached by Haritha in this topic itself. Please let us know your requirement so that we can suggest you accordingly. -
can we get y-axes one above the other on the same side ?
Bindhu replied to mahesh79's topic in Suggestions & Requests
Hi, We do not support such chart types. However, as a work around, you may try rendering 2 chart within 2 divs contained in a common div with all the chart margins, canvas margins set to zero. Hope this helps! -
Is x-axis value hover text available in JS zoomline charts?
Bindhu replied to jpierce42's topic in Installation and Upgrades
Hi, It is the intended behavior of JavaScript ZoomLine chart, as of now(v3.3.1 SR3). This feature will be implemented in the upcoming release(v3.4). Hope this helps! -
How to fix the line dot in the column
Bindhu replied to Jerry Hsieh's topic in FusionCharts and ASP.NET
Hi, Can you please elaborate a bit more on this? Also, please share the XML data with us for testing purposes. -
Hi, Can you please share the complete JSON data for testing purposes?
-
Hi, I am unable to replicate the issue with the said dimensions. Please find attached exported image and console log.
-
Hide line between two data point In MSLine chart
Bindhu replied to [email protected]'s topic in FusionCharts and JSP
Hi, Glad to know that it helps! Happy FusionCharting -
Hi, In JavaScript charts, only font, color, size, bold and italic attributes are supported. Support for rest of the attributes is browser specific. Hope this clarifies!
-
Hide line between two data point In MSLine chart
Bindhu replied to [email protected]'s topic in FusionCharts and JSP
Hi, Welcome to FusionCharts Forum For the datasets for which you have to show only circles use the attribute 'alpha' and set it to 1. Ref. Code: <dataset seriesName='2006' anchorRadius='3' alpha='1'> You may also use the attribute 'anchorRadius' and increase the circle's radius. Hope this helps! -
Fusion Chart MSLine charts not displaying tool tip
Bindhu replied to durga1973's topic in General usage
Hi Durga, It is working fine with the latest version. Please find attached screen shot of the chart rendered. Hope this helps! -
Hi, It looks like a bug. We are looking into it and would get back to you as soon as possible. Hope this helps!
-
Fusion Chart MSLine charts not displaying tool tip
Bindhu replied to durga1973's topic in General usage
Hi Durga, It should work. There is no feature limitation/difference between the trial version and the commercial version of FusionCharts XT, except for the fact that the trial version charts are watermarked. Please provide us the XML/JSON data to test it from our end. -
Hi, Please use 2 <dial ..> within <dials> element. Use the attribute bgColor to specify different colors. Ref. Code: <dials> <dial value="92" bgColor='000000'/> <dial value="34" bgColor='FFFFFF'/> </dials> Hope this helps!