hlukes

stackedbar2d - no vertical lines

Recommended Posts

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??

 

 

sample.png   sample2.png

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now