mirror of
https://github.com/nasa/openmct.git
synced 2025-06-16 14:18:16 +00:00
Make legend configuration properties reactive (#3889)
Co-authored-by: Nikhil <nikhil.k.mandlik@nasa.gov>
This commit is contained in:
@ -133,15 +133,29 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
isLegendHidden: this.legend.get('hideLegendWhenSmall') !== true,
|
||||
isLegendExpanded: this.legend.get('expanded') === true,
|
||||
showTimestampWhenExpanded: this.legend.get('showTimestampWhenExpanded') === true,
|
||||
showValueWhenExpanded: this.legend.get('showValueWhenExpanded') === true,
|
||||
showUnitsWhenExpanded: this.legend.get('showUnitsWhenExpanded') === true,
|
||||
showMinimumWhenExpanded: this.legend.get('showMinimumWhenExpanded') === true,
|
||||
showMaximumWhenExpanded: this.legend.get('showMaximumWhenExpanded') === true
|
||||
isLegendExpanded: this.legend.get('expanded') === true
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
showUnitsWhenExpanded() {
|
||||
return this.legend.get('showUnitsWhenExpanded') === true;
|
||||
},
|
||||
showMinimumWhenExpanded() {
|
||||
return this.legend.get('showMinimumWhenExpanded') === true;
|
||||
},
|
||||
showMaximumWhenExpanded() {
|
||||
return this.legend.get('showMaximumWhenExpanded') === true;
|
||||
},
|
||||
showValueWhenExpanded() {
|
||||
return this.legend.get('showValueWhenExpanded') === true;
|
||||
},
|
||||
showTimestampWhenExpanded() {
|
||||
return this.legend.get('showTimestampWhenExpanded') === true;
|
||||
},
|
||||
isLegendHidden() {
|
||||
return this.legend.get('hideLegendWhenSmall') === true;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
expandLegend() {
|
||||
this.isLegendExpanded = !this.isLegendExpanded;
|
||||
|
Reference in New Issue
Block a user