hlukes Report post Posted January 25, 2016 We are trying to do a stacked bar 2d chart - I don't want any vertical lines. That's all I want to make it look like. Right now it still have the vertical lines. The code is below. How do I get rid of those lines and make it thinner?? var DSCR_BBProperties = new FusionCharts({ type: 'stackedbar2d', renderAt: 'DSCR_BBPropertiesDiv', dataFormat: 'json', width: '250', height: '200', dataSource: { "chart": { "caption": "", "xAxisname": "", "yAxisName": "", "paletteColors": "#92d050,#ffff00,#ffc000,#ff0000", "bgColor": "#ffffff", "borderAlpha": "20", "showBorder": "0", "showCanvasBorder": "0", "usePlotGradientColor": "0", "plotBorderAlpha": "10", "legendBorderAlpha": "0", "showLegend": "0", "legendShadow": "0", "valueFontColor": "#000000", "showXAxisLine": "0", "vDivLineAlpha": "1", "showAlternateVGridColor": "0" }, "categories": [ { "category": [ { "label": "" } ] } ], "dataset": [ { "seriesname": "Bin 1", "data": [ { "value": "5" } ] }, { "seriesname": "Bin 2", "data": [ { "value": "4" } ] }, { "seriesname": "Bin 3", "data": [ { "value": "5" } ] }, { "seriesname": "Bin 4", "data": [ { "value": "9" } ] } ] } }).render(); }); Share this post Link to post Share on other sites
Vishalika Report post Posted January 27, 2016 Hi, Please check the updated JSFiddle as per your requirement: http://jsfiddle.net/vishalika/y3H2G/933/ Hope this helps. Share this post Link to post Share on other sites