Assigning values to an E3Chart Y axis scale in the report.

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

 

Print Friendly, PDF & Email

Este artigo foi útil? Was this helpful?

Classificação média - Average rating 0 / 5. Count: 0

Leave a Reply

Your email address will not be published.Required fields are marked *