jskahan Report post Posted January 13, 2014 I'm looking to do something along these lines, where both plots has a border but only one has a fill: http://finance.yahoo.com/q/bc?t=1y&s=BULIX&l=on&z=l&q=l&c=vfinx&ql=1 I tried setting the alpha of the non-fill plot to 0 but that hides the border as well as the fill. Is this possible? Thanks. Share this post Link to post Share on other sites
Sanjukta Report post Posted January 15, 2014 I'm looking to do something along these lines, where both plots has a border but only one has a fill: http://finance.yahoo.com/q/bc?t=1y&s=BULIX&l=on&z=l&q=l&c=vfinx&ql=1 I tried setting the alpha of the non-fill plot to 0 but that hides the border as well as the fill. Is this possible? Thanks. Hi, Yes, a chart with 2 area plots, one with and another without the fill can be displayed. For this, you would need use a Multi-series Area chart. In the <dataset> where you wish to show the border without the fill, you would need to set the attributes "alpha" to '0.1' and "plotBorderAlpha" to '100'. Ex: <dataset ... alpha='0.1' plotBorderAlpha='100'> Also, you can achieve the same with Combination 2D chart, by rendering one <dataset> as "Area" and another as "Line" to suit your requirement. Hope this helps. Share this post Link to post Share on other sites