SmartClient Version: v13.0p_2022-02-09/PowerEdition Deployment (built 2022-02-09)
or
SmartClient Version: v12.1p_2021-10-22/PowerEdition Deployment (built 2021-10-22)
When switching to 13.0p I see that FacetChart setShowValueOnHover (Boolean t) is deprecated. I replaced it with:
FacetChart setShowDataValuesMode( ShowDataValuesMode.INCHARTANDHOVER);
But now I can't switch between 12.1 releases and 13.0 releases as the type ShowDataValuesMode is not defined in 2021-10-22 version of 12.1.
1. Is this intended? So I can only move forward but never backward?
2. If the usage was chart.setShowValueOnHover (true) is this replaced by chart.setShowDataValuesMode( ShowDataValuesMode.INCHARTANDHOVER) or by chart.setShowDataValuesMode( ShowDataValuesMode.AUTO). Can you clarify the documentation to show the equivalence?
Thanks
or
SmartClient Version: v12.1p_2021-10-22/PowerEdition Deployment (built 2021-10-22)
When switching to 13.0p I see that FacetChart setShowValueOnHover (Boolean t) is deprecated. I replaced it with:
FacetChart setShowDataValuesMode( ShowDataValuesMode.INCHARTANDHOVER);
But now I can't switch between 12.1 releases and 13.0 releases as the type ShowDataValuesMode is not defined in 2021-10-22 version of 12.1.
1. Is this intended? So I can only move forward but never backward?
2. If the usage was chart.setShowValueOnHover (true) is this replaced by chart.setShowDataValuesMode( ShowDataValuesMode.INCHARTANDHOVER) or by chart.setShowDataValuesMode( ShowDataValuesMode.AUTO). Can you clarify the documentation to show the equivalence?
Thanks
Comment