Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2515
Chart Plot Area fill color
posted

How do you change the fill color for a Plot Area?

  • 280
    Offline posted

    Hello Ray,

    Let us know if you need any further assistance.

    Best regards,

    Hristo Popov

  • 54937
    Verified Answer
    Offline posted

    This is similar to other fill type properties on the chart. Unfortunately the member list for the PlotArea is not including the members of its base ChartAreaBase; we're looking into addressing that. Here's an example of setting the fill for the plotArea.

    var plotColor = new $.ig.excel.WorkbookColorInfo("#DDDDDD");
    var plotFill = new $.ig.excel.ChartSolidFill(plotColor);
    chart.plotArea().fill(plotFill);