Hi,
Using Aspose.Cells for java, How cann I enable No Fill for a particular area?
For eg: Suppose I set some fill for chart area, and I want No Fill for Legend area, so that legend box also can have same bg color. How Can I do this?
PatternFill pf1 = new PatternFill();
pf1.setBackgroundColor(wb.getPalette().getColor(30));
pf1.setForegroundColor(wb.getPalette().getColor(30));
chart.getChartArea().getArea().setFill(pf1);
//Itried this , but not working. How can I enable NO FILL
chart.getLegend().getArea().setFill(null);
Thanks
Muhammed