All:
Pretty new to Apache POI and excel VBA, how can I implement something like this in Java with Apache POI or any other java lib:
VBA code in Excel:
Sheets("Sheet 1").ChartObjects("Line Chart")
.Chart.Axes(xlValue).MaximumScale = Sheets("Sheet 1").Range("A37")
I can not find any Chart related API working like this, any thought?
Another way around is: My goal is to use Java automatically update cell A37 and give its value as "Line Chart"'s xAxis Max scale, is there a way now to directly call this VBA code thru POI?
Thanks,