Search the Community

Showing results for tags '2d'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Company Forums
    • Company News
  • Product Forums
    • FusionCharts XT
    • FusionWidgets XT
    • PowerCharts XT
    • FusionMaps XT
    • Collabion Charts for SharePoint
    • jQuery Plugin for FusionCharts
    • AngularJS plugin
    • ReactJS plugin
  • General Forums
    • FusionCharts Jobs and Consultation
    • FusionLounge

Found 2 results

  1. Here's my current 2d doughnut chart using FustionCharts v3.11.3 The area is 195 x 230 Here's the formatting options that I'm using: <chart theme="asi" animation='0' caption='${w.caption!}' captionPadding='0' baseFontSize='10' baseFontColor='#FFFFFF' bgAlpha='100' bgColor='#000000' enableSmartLabels='1' manageLabelOverflow='1' useEllipsesWhenOverflow='0' showBorder='0' showZeroPies='1' showPercentValues='0' showValues='1' decimals='0' centerlabel='$label: $value' pieRadius='50' valueposition='inside' labelDistance='10' labelFontColor='#FFFFFF' chartLeftMargin='0' chartRightMargin='0' chartTopMargin='10' chartBottomMargin='0' > </chart> What I'm looking to do is to increase the size of the labels "Major" and "Critical", and decrease the amount of space between the chart and the labels. I'd like to make it look like this: Again, we are on version 3.11.3. I've tried to increase the font size, but when I do that, the "Major and "Critical" move off to the side and look like this:
  2. In my company, we are using version 3.3.1, release 19520. I have a Scroll Combination 2D (Dual Y) Chart with dinamically generated data. When the chart has only one category, the category label is shown as 'undefined'. If another category is added to the XML (even if the second category has no label and no set data), the label appears normally. This didn't happen in the previous version we were using (3.2.4, release 8565). The chart is being created like this: var myChart = new FusionCharts("../pluginPath/ScrollCombiDY2D.swf", "chartId", 1518, 244, 0, 1, "FFFFFF", "noScale", "EN", "0", "1"); chart.setDataXML(data); chart.render(myDiv); This is the XML loaded into the data variable: <chart caption='Chart' PYAxisName='Value 1' SYAxisName='Value 2' labelDisplay='Rotate' slantLabels='1' useEllipsesWhenOverflow='0' showAlternateHGridColor='0' showvalues='0' decimals="1" decimalSeparator=',' inDecimalSeparator="," sDecimals="2" snumberSuffix='%' numVisiblePlot='10' baseFontColor='000000' canvasBorderColor='999999' showLimits='0' bgColor='FFFFFF' showBorder='0' PYAxisMinValue='0' PYAxisMaxValue='12' SYAxisMinValue='0' SYAxisMaxValue='120' legendPosition ='right' numdivlines='5' > <categories> <category label='Category 1' /> </categories> <dataset seriesName='Value 1' color="399E38"> <set value='6,63' tooltext="Category 1{br}Value 1: 6,63{br}Value 2: 91,53%" /> </dataset> <dataset seriesName='Value 2' parentYAxis='S' color="006CAD" renderAs="LINE" > <set value='91,53%' tooltext="Category 1{br}Value 1: 6,63{br}Value 2: 91,53%" /> </dataset> </chart> I attached the resulting charts for: 2 filled-out categories (correct-labels.png); 1 filled-out category and 1 empty category (empty-label;png); and 1 category (undefined-category.png) My company's clients are complaining about the undefined label cases, so please let me know if there is a solution available as soon as possible. Thanks is advance!