Leo_T Report post Posted March 5, 2013 Hi, can you please tell me if there is a way in FusionCharts Jscript(latest version) to make the gridlines disappear/hidden. Similar to the hidden gridlines on the attached image. Any help would be appreciated. Thanks Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted March 5, 2013 Hi, Could you please try setting the "divLineThickness" to '0' and "divLineAlpha" to '0' in the <chart> element of your XML data for Bar2D chart of FusionCharts XT? Ref. XML Code: <chart caption='Revenue Estimation - Year 2002' divLineThickness='0' divLineAlpha='0' showAlternateVGridColor='0' numberPrefix='US$' showValues='1' plotFillAngle='0' plotBorderColor='000000' plotBorderAlpha='100' bgAlpha='0' canvasBorderThickness='0' showYAxisValues='0'> <set label='Flash Light' value='420000' color='008000' /> <set label='THP Thunder' value='910000' color='008000' /> <set label='Eletech' value='720000' color='008000' /> <set label='Supreme' value='550000' color='008000' /> <set label='Indo Digital' value='810000' color='008000' /> <set label='Giga Tech' value='510000' color='008000' /> <set label='CID' value='680000' color='008000' /> <set label='UG Super' value='620000' color='008000' /> <set label='Simpa' value='610000' color='008000' /> <set label='Bastic Group' value='490000' color='008000' /> <styles> <definition> <style name='Style1' type='font' font='Arial' size='12' italic='1' alpha='100' color='302217' bold='1' /> </definition> <application> <apply toObject='DATAVALUES' styles='Style1' /> <apply toObject='DATALABELS' styles='Style1' /> <apply toObject='CAPTION' styles='Style1' /> </application> </styles> </chart> Please find the attached screen shot of the chart rendered using the above XML code. Hope this helps! Share this post Link to post Share on other sites
Leo_T Report post Posted March 6, 2013 That worked great. Thank you. Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted March 6, 2013 Hi, Glad to know the solution provided, is helpful for you. Share this post Link to post Share on other sites