Question:
How can I attribute values to the Y axis’ minimum and maximum values of an E3Chart that is in the report?
Solution:
This can be done via the report’s scripts, by accessing the VerScaleBegin and VerScaleEnd properties of the E3Chart in the report.
Example:
PageHeader‘s OnBeforePrint event, in the report’s scripts:
Set Chart = Report.Sections("PageHeader").Controls("E3Chart1")
Chart.VerScaleBegin = 150
Chart.VerScaleEnd = 95