Question:
How can I assign maximum and minimum values to an E3Chart‘s Y axis in a Section Report in Elipse E3?
Solution:
You can do this via scripts (the same script loading the report). To do so, access the VerScaleBegin and VerScaleEnd properties of the E3Chart in the Section Report.
Example:
- Sub CommandButton1_Click()
- Set Report = Application.LoadReport("RelatorioSecao1")
- Set chart = Report.Item("E3Chart1")
- chart.VerScaleBegin = 110
- chart.VerScaleEnd = -10
- Report.PrintPreview()
- End Sub