2020-12-30 09:04 AM
My instance is created in the base file as follows:
touchgfx::GraphScroll<50> BlueGraph;
And I need to change the capacity of this graph from 50 to 100 to have the line smoother when some event is triggered.
Is is possible to change that capacity after setting it in the base file generated ???
Solved! Go to Solution.
2021-01-04 11:00 PM
Hello AGama.1,
No unfortunately the capacity has no public setter that you could use to change the value at run time. The current implementation forces you to set a capacity at the instance creation that will never change.
I'll discuss with the team to see if we can change this to make what you want possible.
/Alexandre
2021-01-04 11:00 PM
Hello AGama.1,
No unfortunately the capacity has no public setter that you could use to change the value at run time. The current implementation forces you to set a capacity at the instance creation that will never change.
I'll discuss with the team to see if we can change this to make what you want possible.
/Alexandre
2021-01-05 01:40 PM
Thanks Alexandre for you reply.
Actually I implemented (for now) some workaround exploiting the visibility of 2 overlapping graphs with different capacities to get things done.
I am very interested in knowing some other solution your team can end up with. Hope to have better solution from you.
Thanks once again for your response.
AGama.1