majid Report post Posted May 7, 2012 (edited) For some reason the background image is applied around the canvas but not on the canvas itself. as a result the chart has a white background but all around it my bg image is visible. Here is what I am using to style my chart: //anchor styling DrawAnchors = 1, AnchorBgColor = "ffffff", AnchorBorderThickness = 1, AnchorAlpha = 100, //gridlines showAlternateHGridColor = 0, divLineIsDashed = 1, baseFontColor = "ffffff", outCnvBaseFontColor = "fff", showToolTip = 0, //chart styling showBorder = 0, showYAxisValues = 1, showLegend=0, chartTopMargin= "50", plotGradientColor=" ", //background image bgImage = "/Content/images/bg.png", bgImageDisplayMode = "Tile", How can I get the background image applied to the entire area and have no white background behind the chart (on the canvas) Edited May 7, 2012 by majid Share this post Link to post Share on other sites
Guest Sumedh Report post Posted May 8, 2012 For some reason the background image is applied around the canvas but not on the canvas itself. as a result the chart has a white background but all around it my bg image is visible. Here is what I am using to style my chart: //anchor styling DrawAnchors = 1, AnchorBgColor = "ffffff", AnchorBorderThickness = 1, AnchorAlpha = 100, //gridlines showAlternateHGridColor = 0, divLineIsDashed = 1, baseFontColor = "ffffff", outCnvBaseFontColor = "fff", showToolTip = 0, //chart styling showBorder = 0, showYAxisValues = 1, showLegend=0, chartTopMargin= "50", plotGradientColor=" ", //background image bgImage = "/Content/images/bg.png", bgImageDisplayMode = "Tile", How can I get the background image applied to the entire area and have no white background behind the chart (on the canvas) Hi, You can use canvasBgAlpha attribute under the chart element. This attribute allows you to set transparency of the chart canvas. Ref. Code: <Chart ... canvasBgAlpha='0'> Share this post Link to post Share on other sites
majid Report post Posted May 8, 2012 Hi, You can use canvasBgAlpha attribute under the chart element. This attribute allows you to set transparency of the chart canvas. Ref. Code: <Chart ... canvasBgAlpha='0'> Thanks this worked perfectly! Share this post Link to post Share on other sites
Guest Sumedh Report post Posted May 9, 2012 Thanks this worked perfectly! Share this post Link to post Share on other sites