Closed aaronrai24 closed 3 months ago
Autofill expects event.event to show properties
event.event
If you use event.event then you get this error: AttributeError: 'com.inductiveautomation.ignition.common.script.ada' object has no attribute 'event'
AttributeError: 'com.inductiveautomation.ignition.common.script.ada' object has no attribute 'event'
Using event once(for example: event.dataPointIndex) works. This is expected for autofill as well...
event.dataPointIndex
I fixed this issue in 1.0.19:
https://github.com/Kyvis-Labs/ignition-apexcharts-module/releases/tag/1.0.19
Issue
Autofill expects
event.event
to show propertiesIf you use event.event then you get this error:
AttributeError: 'com.inductiveautomation.ignition.common.script.ada' object has no attribute 'event'
Expected
Using event once(for example:
event.dataPointIndex
) works. This is expected for autofill as well...