You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then if we add same value lets say 5, once it will be displayed correctly, the next time the line will disappear, then it will be displayed ok...
sparkLineTile.setValue(5); //OK
sparkLineTile.setValue(5); //problem - line is hidden
sparkLineTile.setValue(5); //OK
sparkLineTile.setValue(5); //problem - line is hidden
sparkLineTile.setValue(5); //OK
sparkLineTile.setValue(5);//problem - line is hidden
sparkLineTile.setValue(5); //OK
...
I've tested tilesfx ver17.1.17 and ver16.0.0 and they have the same problem.
Ver11.1 seems to be OK.
I am working with JDK 17 with integrated FX from Zulu
What could be the problem?
Thanks
The text was updated successfully, but these errors were encountered:
I figured out that after setting fixedYScale on the problem disappear but the spark line is displaying in different way. Is there any way to achieve this without fixedYScale turned on ?
Thanks
Hello,
I've noticed a strange behavior in case we add the same value to SPARK_LINE tile. Here is how this can be reproduced:
Tile sparkLineTile = TileBuilder.create()
.skinType(SkinType.SPARK_LINE)
.title("SparkLine Tile")
.unit("mb")
.strokeWithGradient(true)
.build();
Then if we add same value lets say 5, once it will be displayed correctly, the next time the line will disappear, then it will be displayed ok...
sparkLineTile.setValue(5); //OK
sparkLineTile.setValue(5); //problem - line is hidden
sparkLineTile.setValue(5); //OK
sparkLineTile.setValue(5); //problem - line is hidden
sparkLineTile.setValue(5); //OK
sparkLineTile.setValue(5);//problem - line is hidden
sparkLineTile.setValue(5); //OK
...
I've tested tilesfx ver17.1.17 and ver16.0.0 and they have the same problem.
Ver11.1 seems to be OK.
I am working with JDK 17 with integrated FX from Zulu
What could be the problem?
Thanks
The text was updated successfully, but these errors were encountered: