Manjuanth

Members
  • Content count

    17
  • Joined

  • Last visited

About Manjuanth

  • Rank
    Junior Member
  1. Hi, Please confirm that is Zoom-line chart type supported for drill-down (link) feature. If yes, please get the some sample xml to implement drill-down functionality.
  2. Hi I wanted to relocate the download button in the chart, Because On click of chart download button context menu item (Download options) opening at top, i wanted context menu item to open to down wards . Some browser it's opening as normal (to down) only IE8 ,10, 11 this issue is happening. Please help on this regards, Please check the attachment. early response will be highly appreciated.
  3. Hi I wanted to apply link attribute to Angular Gauge chart type, Please let me know is it possible to add Link attribute to Angular Gauge chart type, If yes , kindly get me the sample XML to implement this.
  4. How to Wrap the label text in MultIlevelPie chart

    Thanks it's worked for me..
  5. Hi I wanted to warp the label text in MultiLevelPie chart. I didn’t found any property to wrap the label text Please help me on this. Please find attached XML and screen shot. Data_11.xml
  6. Hi I am trying to set the yAxisValueDecimals and xAxisValueDecimals in to my chart to display value in decimal but it's not working as expected. Please help me on this.
  7. Hi When i tried to resize the chart then chart getting blank in IE10. IE10 - 10.0.9200.16866 - Not Working IE10 - 10.0.9200.16921 - Not Working IE10 - 10.0.9200.16521 - Working fine Please help me on this.
  8. Hi Bindhu, This is great, it’s working fine for me. Thanks for your quick response.
  9. Hi When i trying to resize the AngularGuage chart at run time then chart dial is not changing as corresponding to chart size. Please help me on this. Please find attached screen shot and chart xml. Data1.xml
  10. Legend bgcolor attribute is applying in Mozilla

    Hi , Thanks for the response.. It's not only for Pie chart, I have tried to apply legend text background color for all chart type. Please find attached screen shot for your reference..which is i am looking for..
  11. Legend bgcolor attribute is applying in Mozilla

    Hi , Thanks for the response.. It's not only for Pie chart, I have tried to apply legend text background color for all chart type. Please find attached screen shot for your reference..
  12. I am rendering javascript chart, Can you plz tell me any other solution for this issue
  13. Hi, I am trying apply bgcolor for pieChart legend text it's working fine in IE, but it's not applying in Mozilla. Please help on thins. Here is my chart data. <chart exportEnabled='1' exportHandler='ACB.aspx' exportAtClient='0' exportAction='download' showAboutMenuItem='0' animation = '1' showLegend = '1' bgColor = 'FFFFFF,FFFFFF' useRoundEdges = '1' > <set label='Employee 1.' value='2' /> <set label='Employee 2' value='2' /> <set label='Employee 3' value='2' /> <set label='Employee 4' value='2' /> <set label='Employee 5' value='2' /> <set label='Employee 6' value='2' /> <styles> <definition> <style name = 'LegendFont' type = 'Font' bgColor = '1912e6' /> </definition> <application> <apply ToObject='Legend' Styles ='LegendFont'/> </application> </styles> </chart>
  14. Hi, I am trying to set caption(title) align property to my chart, but it's not applying in IE 8, IE 9. Below is the chart data xml. Please look into the style tag. <chart caption='Business Results 2005 v 2006' xAxisName='Month' yAxisName='Revenue' showValues='0' numberPrefix='$' numVisiblePlot='6' subCaption='In Thousands'> <categories> <category label='Jan' /> <category label='Feb' /> <category label='Mar' /> <category label='Apr' /> <category label='May' /> <category label='Jun' /> <category label='Jul' /> <category label='Aug' /> <category label='Sep' /> <category label='Oct' /> <category label='Nov' /> <category label='Dec' /> </categories> <dataset seriesName='2006'> <set value='27400' /> <set value='29800'/> <set value='25800' /> <set value='26800' /> <set value='29600' /> <set value='32600' /> <set value='31800' /> <set value='36700' /> <set value='29700' /> <set value='31900' /> <set value='34800' /> <set value='24800' /> </dataset> <dataset seriesName='2005'> <set value='10000'/> <set value='11500'/> <set value='12500'/> <set value='15000'/> <set value='11000' /> <set value='9800' /> <set value='11800' /> <set value='19700' /> <set value='21700' /> <set value='21900' /> <set value='22900' /> <set value='20800' /> </dataset> <trendlines> <line startValue='26000' color='91C728' displayValue='Target' showOnTop='1'/> </trendlines> <styles> <definition> <style name = 'TitleFont' type = 'font' size = '25' align="left" letterSpacing = '1' leftMargin = '19' /> </definition> <application> <apply ToObject='Caption' Styles ='TitleFont'/> </application> <definition> <style name = 'SubTitleFont' type = 'Font' size = '9' align ="left" letterSpacing = '1' leftMargin = '18' /> </definition> <application> <apply ToObject='SubCaption' Styles ='SubTitleFont'/> </application> </styles> </chart>