Search the Community

Showing results for tags 'combination'.



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 3 results

  1. Hello, I'm trying to create a multiseries 2D bar chart and each series should have their own trendline (datasets are results of the same research conducted each year = each year has a different trendline). I was trying to tackle this (trendlines running through the enitre chart) by using a step line chart. Is it possible to combine a step line chart with a bar chart, or is a step line chart only possible as a multiseries as I've gathered from the docs? Can a trendline (or any line) be assigned to a specific dataset and not have it run across the whole chart?
  2. Hi everyone, I have been exploring the possibilities with FusionCharts for a little while now and am currently exploring their limitations as our company is looking at purchasing the full product. At the moment I am experimenting with the trail version of FusionCharts, however I have come across a requirement in our current system that I am finding that I am unable to recreate in FusionCharts and therefore would be very grateful if anyone has had a similar issue or whether there is a solution. A few charts that we currently display are a combination of column and scatter charts. I am able to recreate the chart using the 2D combination chart (currently using the 2-yAxis chart type) with column and line, but is there a way for me to render the series in question as scatter in the context of this chart? I've looked into the renderAs attribute and other chart types, but cannot see (in documentation / Google) a way for this to be done at current. Thank you for any assistance! Dan
  3. 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!