Search the Community

Showing results for tags 'category'.



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

  1. Hi all, in a stackedcolumn2d we need to hide series and categories. First is handled by legend clicks and for the latter we defined a custom JavaScript function in link label attribute. Here we look for Fusioncharts widget and call getChartData() in order to manipulate the dataset before calling setChartData again. However, apart from 'initiallyHidden' attribute only works for series and we could not find a similar attribute for driving categories visibility. If you look at attached image, hiding first column in the chart will make it re-scale, giving a decent size to other very small columns. Regards, Francesco
  2. I'm using a 2D Stacked area chart with a json data source similar to the example below (but with a lot more dates). I'd like to add a drop-down menu on the page that filters the data by date range. Any suggestions on the best way to do this? Thanks, { "graph": { "caption": "My Chart" }, "categories": [ { "category": [ {"name": "01/10/2007","showname": "1"}, ..... {"name": "10/15/2014","showname": "0"} ] } ], "dataset": [ { "seriesname": "First Series", "data": [ {"value": "771569"}, ... {"value": "358887"} ] }, { "seriesname": "Second Series", "data": [ {"value": "7347"}, ... {"value": "12596"} ] }, { "seriesname": "Third Series", "data": [ {"value": "40857"}, ... {"value": "0"} ] } ] }
  3. Due to a system limitation, I can only produce "dataset":[{"label":"Desktop","seriesname":"A","value":"335000"}] instead of the below in the documentation. Anyway to configure it so that it will take the figures similar to my ideal case? Can someone suggest a workaround for me? I'm new to FusionCharts. Thanks in advance. "categories":[{ "category":[{ "label":"Desktop" }, { "label":"Laptop" }, { "label":"Notebook" } ] } ], "dataset":[{ "seriesname":"A", "data":[{ "value":"335000" }, { "value":"225100" }, { "value":"164200" } ] }, { "seriesname":"B", "data":[{ "value":"245000" }, { "value":"198000" }, { "value":"120000" } ] }, { "seriesname":"C", "data":[{ "value":"298000" }, { "value":"109300" }, { "value":"153600" }
  4. 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!