Search the Community

Showing results for tags 'stackedbar2d'.



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. I have 2 bar graphs, one standard column, and one horizontal stacked. Each of these graphs have a border at the start and end of the data. (i.e. on top and bottom for column graph, and on left and right for stacked). I have used many options for disabling these borders but none have succeeded. I have traced this down to an element with the following class name: "axisReferenceVisualsBottom". Are there any options to remove the lines created by axisReferenceVisualsBottom? Stacked (left and right borders): Column (top and bottom): Configuration: chart: { animation: 0, bgColor: '#ffffff', canvasBgColor: '#ffffff', showAlternateHGridColor: 0, showAlternateVGridColor: 0, maxLabelWidthPercent: '20', showPlotBorder: 0, usePlotGradientColor: 0, showBorder: 0, showCanvasBorder: 0, showTooltipforWrappedLabels: 1, showValues: 0, useEllipsesWhenOverflow: 1, showLegend: 0, showZeroPlane: 0, showVZeroPlane: 0, showLabels: 0, showDivLineValues: 0, showLimits: 0, showSecondaryLimits: 0, lineAlpha: 0, canvasLineAlpha: 0, borderAlpha: 0, canvasBorderAlpha: 0, xAxisLineColor: '#ffffff', yAxisLineColor: '#ffffff', yAxisValueBgColor: '#ffffff', yAxisValueBgAlpha: 0, xAxisValueBgColor: '#ffffff', xAxisValueBgAlpha: 0, showYAxisValues: 0, showXAxisValues: 0, showXAxisLine: 0, showYAxisLine: 0, showAnchors: 0, numDivLines: 0, showDivLineSecondaryValue: 0, }
  2. maxBarHeight isn't working anymore

    Hi, I think there's a bug : maxBarHeight isn't working anymore. Please find the issue on this code pen link.
  3. Hi, I am using the "stackedbar2d" chart as in the following jsfiddler http://jsfiddle.net/x8MDc/437/ If you notice, in the dataset = "PERCENTAGE", I am using "alpha"=0, and plotbordercolor="#FFFFFF". But still, I can see border around this dataset, before upgrading it used to work. Another thing, the first dataset, the border is not showing completely, it is breaking from start. Please see details in the image below. So, My main Issues: 1. Incomplete border in the first Datset 2. Alpha attribute in last dataset.
  4. The following array represents my X-Axis metadata for Fusion Chart (StackedBar2D). My requirement is to render a vertical line if the date is today i.e. current date. (Note: the following data is only partial) So eg: if today is Wed 30-Aug-2011, I insert a vertical line object in the array. This works fine, a line is appropriately rendered. However, if today is Wed 31-Aug-2011, I insert the vline object at the end of the array. This time, fusion charts does not render the vertical line. This page states that vertical line can be placed between any two data points. I understand that there are no two data points in this case (i.e. vline object is not between two data points) but is there a way to still render the line? I found a hack which is to insert a blank label after thevline object but again, it's a hack, it creates a noticeable blank area at the right end. Is it a limitation that I have to deal with? Any proper solution or a workaround? [ { "label": "Mon 01-Aug-2011" }, { "label": "Tue 02-Aug-2011" }, { "label": "Wed 03-Aug-2011" }, { "label": "Thu 04-Aug-2011" }, { "label": "Fri 05-Aug-2011" }, { "label": "Sat 06-Aug-2011" }, { "label": "Sun 07-Aug-2011" }, { "label": "Mon 08-Aug-2011" }, { "label": "Tue 09-Aug-2011" }, { "label": "Wed 10-Aug-2011" }, { "label": "Thu 11-Aug-2011" }, { "label": "Fri 12-Aug-2011" }, { "label": "Sat 13-Aug-2011" }, { "label": "Sun 14-Aug-2011" }, { "label": "Mon 15-Aug-2011" }, { "label": "Tue 16-Aug-2011" }, { "label": "Wed 17-Aug-2011" }, { "label": "Thu 18-Aug-2011" }, { "label": "Fri 19-Aug-2011" }, { "label": "Sat 20-Aug-2011" }, { "label": "Sun 21-Aug-2011" }, { "label": "Mon 22-Aug-2011" }, { "label": "Tue 23-Aug-2011" }, { "label": "Wed 24-Aug-2011" }, { "label": "Thu 25-Aug-2011" }, { "label": "Fri 26-Aug-2011" }, { "label": "Sat 27-Aug-2011" }, { "label": "Sun 28-Aug-2011" }, { "label": "Mon 29-Aug-2011" }, { "label": "Tue 30-Aug-2011" }, { "label": "Wed 31-Aug-2011" }, { "vline": "true", "thickness": "2", "dashed": "1", "linePosition ": "0", "dashGap": "2" } ]