Vue UI Components Documentation
Vue BarGauge Component
The BarGauge component for Vue represents data as a set of bars that reside on separate circular tracks.
Prerequisites
Refer to Vue Getting Started before you start with this help topic.
Configuration
After you have created your App.vue file, here is how you should structure it:
The BarGauge component for Vue requires the following import:
import JqxBarGauge from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxbargauge.vue';
Add the jqxBarGauge component to the components section of the the Vue class
components: { JqxBarGauge },
Template
The App.vue has a <template>
structural tag where we determine the application structure.
There we will also set the tags for the new components - <JqxBarGauge/>
<template> <JqxBarGauge :width="500" :height="600" :colorScheme="'scheme02'" :max="150" :values="values" :tooltip="tooltip"> </JqxBarGauge></template>
Properties
The properties of the <JqxBarGauge/> component are defined in the data
member of the Vue class.
We should put them in the return object of the data function:
data: function () { return { tooltip: { visible: true, formatFunction: (value) => { let realVal = parseInt(value); return ('Year: 2016<br />Price Index:' + realVal); } }, values: [102, 115, 130, 137] }}
Events
The events in Vue are set as an attribute with @ prefix, for example:
<JqxBarGauge ref="myBarGauge" @drawEnd="onDrawEnd($event)"></JqxBarGauge>
All events that are bound to a component are implemented in the methods
member of the Vue class.
methods: { onDrawEnd: function (event) { // Do something... }}
Methods
To use a component's method we should have its reference. In Vue we refer to a component by the special $refs
property.
Before that we need to add the desired name reference to that component:
<JqxBarGauge ref="barGauge"></JqxBarGauge>
Here how you can use a component's method:
this.$refs.barGauge.val([10, 20, 30, 40]);
methods: { // Add here all used callbacks and/or events onDrawEnd: function (event) { this.$refs.barGauge.val([10, 20, 30, 40]); }}
If we want to add additional methods we should also implement them in the methods
member.
In case we need to do some precalculation or something else before the components are rendered, we should use the beforeCreate
member.
It depends on the case.
If you have followed the above steps, you App.vue file would look like this:
App.vue:
<template> <JqxBarGauge ref="barGauge" @drawEnd="onDrawEnd($event)" :width="width" :height="600" :colorScheme="'scheme02'" :max="150" :values="values" :tooltip="tooltip"> </JqxBarGauge></template> <script> // Import the components that will be used import JqxBarGauge from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxbargauge.vue'; export default { components: { // Adding imported widgets here JqxBarGauge }, data: function () { // Define properties which will use in the widget return { width: 500, tooltip: { visible: true, formatFunction: (value) => { let realVal = parseInt(value); return ('Year: 2016<br />Price Index:' + realVal); } }, values: [102, 115, 130, 137] } }, beforeCreate: function () { // Add here any data where you want to transform before components be rendered }, methods: { // Add here all used callbacks and/or events onDrawEnd: function (event) { this.$refs.barGauge.val([10, 20, 30, 40]); } } }</script> <style></style>
BarGauge Example
<template> <JqxBarGauge ref="myBarGauge" @drawEnd="onDrawEnd()" :width="width" :height="600" :relativeInnerRadius="0.6" :values="[25]" :formatFunction="formatFunction"> </JqxBarGauge></template> <script> import JqxBarGauge from 'jqwidgets-scripts/jqwidgets-vue/vue_jqxbargauge.vue'; export default { components: { JqxBarGauge, }, data: function () { return { width: 500 } }, methods: { formatFunction: function (value, index, color) { let barGaugePalette = ['#307DD7', '#AA4643', '#89A54E', '#71588F', '#4198AF']; if (value < 20) { return barGaugePalette[0]; } if (value < 40) { return barGaugePalette[1]; } if (value < 60) { return barGaugePalette[2]; } if (value < 80) { return barGaugePalette[3]; } if (value <= 100) { return barGaugePalette[4]; } }, onDrawEnd: function () { let values = [this.getRandomInt(1, 99)]; setTimeout(() => { this.$refs.myBarGauge.val(values); }, 1000); }, getRandomInt: function (min, max) { return Math.floor(Math.random() * (max - min)) + min; } } }</script>