Gauge appearance in Vue Circular gauge component
11 Jun 202424 minutes to read
Gauge Title
Circular gauge can be given a title by using title
property, to show the information about the gauge.
Title can be customized by using titleStyle
property in gauge.
<template>
<div id="app">
<div class='wrapper'>
<ejs-circulargauge title='Speedometer' :titleStyle='titleStyle'>
</ejs-circulargauge>
</div>
</div>
</template>
<script setup>
import { CircularGaugeComponent as EjsCirculargauge } from "@syncfusion/ej2-vue-circulargauge";
const titleStyle = {
color: '#27d5ff'
}
</script>
<style>
.wrapper {
max-width: 300px;
margin: 0 auto;
}
</style>
<template>
<div id="app">
<div class='wrapper'>
<ejs-circulargauge title='Speedometer' :titleStyle='titleStyle'>
</ejs-circulargauge>
</div>
</div>
</template>
<script>
import { CircularGaugeComponent } from "@syncfusion/ej2-vue-circulargauge";
export default {
name: "App",
components: {
"ejs-circulargauge": CircularGaugeComponent
},
data: function () {
return {
titleStyle: {
color: '#27d5ff'
}
}
}
};
</script>
<style>
.wrapper {
max-width: 300px;
margin: 0 auto;
}
</style>
Gauge Position
Gauge can be positioned anywhere in the container with the help of
centerX
and
centerY
property and it accepts values either in percentage or in pixels.
The default value of the centerX
and
centerY
property is 50%, which means gauge will get rendered to the centre of the container.
In Pixel
You can set the mid point of the gauge in pixel as demonstrated below,
<template>
<div id="app">
<div class='wrapper'>
<ejs-circulargauge>
<e-axes>
<e-axis startAngle=90 endAngle=180 :lineStyle='lineStyle'>
</e-axis>
</e-axes>
</ejs-circulargauge>
</div>
</div>
</template>
<script setup>
import { CircularGaugeComponent as EjsCirculargauge, AxesDirective as EAxes, AxisDirective as EAxis } from "@syncfusion/ej2-vue-circulargauge";
const lineStyle = {
width: 2,
color: '#F8F8F8'
}
</script>
<style>
.wrapper {
max-width: 200px;
max-height: 100px;
margin: 0px;
}
</style>
<template>
<div id="app">
<div class='wrapper'>
<ejs-circulargauge>
<e-axes>
<e-axis startAngle=90 endAngle=180 :lineStyle='lineStyle'>
</e-axis>
</e-axes>
</ejs-circulargauge>
</div>
</div>
</template>
<script>
import { CircularGaugeComponent, AxesDirective, AxisDirective } from "@syncfusion/ej2-vue-circulargauge";
export default {
name: "App",
components: {
"ejs-circulargauge": CircularGaugeComponent,
"e-axes": AxesDirective,
"e-axis": AxisDirective
},
data: function () {
return {
lineStyle: {
width: 2,
color: '#F8F8F8'
}
}
}
};
</script>
<style>
.wrapper {
max-width: 200px;
max-height: 100px;
margin: 0px;
}
</style>
In Percentage
By setting the value in percentage, gauge gets its mid point with respect to its plot area.
For example, when the centerX
value as ‘0%’ and centerY
value is ‘50%’, gauge will get positioned at the top left corner of the plot area.
<template>
<div id="app">
<div class='wrapper'>
<ejs-circulargauge>
<e-axes>
<e-axis startAngle=0 endAngle=180 :lineStyle='lineStyle'>
</e-axis>
</e-axes>
</ejs-circulargauge>
</div>
</div>
</template>
<script setup>
import { CircularGaugeComponent as EjsCirculargauge, AxesDirective as EAxes, AxisDirective as EAxis } from "@syncfusion/ej2-vue-circulargauge";
const lineStyle = {
width: 2,
color: '#F8F8F8'
}
</script>
<style>
.wrapper {
max-width: 300px;
max-height: 100px;
margin: 0px;
}
</style>
<template>
<div id="app">
<div class='wrapper'>
<ejs-circulargauge>
<e-axes>
<e-axis startAngle=0 endAngle=180 :lineStyle='lineStyle'>
</e-axis>
</e-axes>
</ejs-circulargauge>
</div>
</div>
</template>
<script>
import { CircularGaugeComponent, AxesDirective, AxisDirective } from "@syncfusion/ej2-vue-circulargauge";
export default {
name: "App",
components: {
"ejs-circulargauge": CirculargaugeComponent,
"e-axes": AxesDirective,
"e-axis": AxisDirective
},
data: function () {
return {
lineStyle: {
width: 2,
color: '#F8F8F8'
}
}
}
};
</script>
<style>
.wrapper {
max-width: 300px;
max-height: 100px;
margin: 0px;
}
</style>
Area Customization
Customize the gauge background
Using background
and
border
properties, you can change the background color and border of the circular gauge.
<template>
<div id="app">
<div class='wrapper'>
<ejs-circulargauge>
<e-axes>
<e-axis startAngle=230 endAngle=130 maximum=120 radius='90%' :pointers='pointers' :ranges='ranges'
:lineStyle='lineStyle' :minorTicks='minorTicks' :majorTicks='majorTicks'>
</e-axis>
</e-axes>
</ejs-circulargauge>
</div>
</div>
</template>
<script setup>
import { CircularGaugeComponent as EjsCirculargauge, AxesDirective as EAxes, AxisDirective as EAxis } from "@syncfusion/ej2-vue-circulargauge";
const majorTicks = {
width: 1, color: '#8c8c8c'
};
const lineStyle = { width: 2 };
const minorTicks = {
width: 1, color: '#8c8c8c'
};
const pointers = [{
value: 60,
radius: '60%'
}];
const ranges = [{
start: 0,
end: 70,
radius: '110%',
strokeWidth: 10
}, {
start: 70,
end: 110,
radius: '110%',
strokeWidth: 10
}, {
start: 110,
end: 120,
radius: '110%',
strokeWidth: 10
}]
</script>
<style>
.wrapper {
max-width: 300px;
margin: 0 auto;
}
</style>
<template>
<div id="app">
<div class='wrapper'>
<ejs-circulargauge>
<e-axes>
<e-axis startAngle=230 endAngle=130 maximum=120 radius='90%' :pointers='pointers' :ranges='ranges'
:lineStyle='lineStyle' :minorTicks='minorTicks' :majorTicks='majorTicks'>
</e-axis>
</e-axes>
</ejs-circulargauge>
</div>
</div>
</template>
<script>
import { CircularGaugeComponent, AxesDirective, AxisDirective } from "@syncfusion/ej2-vue-circulargauge";
export default {
name: "App",
components: {
"ejs-circulargauge": CircularGaugeComponent,
"e-axes": AxesDirective,
"e-axis": AxisDirective
},
data: function () {
return {
majorTicks: {
width: 1, color: '#8c8c8c'
},
lineStyle: { width: 2 },
minorTicks: {
width: 1, color: '#8c8c8c'
},
pointers: [{
value: 60,
radius: '60%'
}],
ranges: [{
start: 0,
end: 70,
radius: '110%',
strokeWidth: 10
}, {
start: 70,
end: 110,
radius: '110%',
strokeWidth: 10
}, {
start: 110,
end: 120,
radius: '110%',
strokeWidth: 10
}]
}
}
};
</script>
<style>
.wrapper {
max-width: 300px;
margin: 0 auto;
}
</style>
Gauge Margin
You can set margin for gauge from its container through
margin
property.
<template>
<div id="app">
<div class='wrapper'>
<ejs-circulargauge background='skyblue' :border='border' :margin='margin'>
<e-axes>
<e-axis startAngle=230 endAngle=130 maximum=120 radius='90%' :pointers='pointers' :ranges='ranges'
:lineStyle='lineStyle' :minorTicks='minorTicks' :majorTicks='majorTicks'>
</e-axis>
</e-axes>
</ejs-circulargauge>
</div>
</div>
</template>
<script setup>
import { CircularGaugeComponent as EjsCirculargauge, AxesDirective as EAxes, AxisDirective as EAxis } from "@syncfusion/ej2-vue-circulargauge";
const border = { color: "#FF0000", width: 2 };
const margin = { left: 40, right: 40, top: 40, bottom: 40 };
const majorTicks = {
width: 1, color: '#8c8c8c'
};
const lineStyle = { width: 2 };
const minorTicks = {
width: 1, color: '#8c8c8c'
};
const pointers = [{
value: 60,
radius: '60%'
}];
const ranges = [{
start: 0,
end: 70,
radius: '110%',
strokeWidth: 10
}, {
start: 70,
end: 110,
radius: '110%',
strokeWidth: 10
}, {
start: 110,
end: 120,
radius: '110%',
strokeWidth: 10
}]
</script>
<style>
.wrapper {
max-width: 400px;
max-height: 100px;
margin: 0 auto;
}
</style>
<template>
<div id="app">
<div class='wrapper'>
<ejs-circulargauge background='skyblue' :border='border' :margin='margin'>
<e-axes>
<e-axis startAngle=230 endAngle=130 maximum=120 radius='90%' :pointers='pointers' :ranges='ranges'
:lineStyle='lineStyle' :minorTicks='minorTicks' :majorTicks='majorTicks'>
</e-axis>
</e-axes>
</ejs-circulargauge>
</div>
</div>
</template>
<script>
import { CircularGaugeComponent, AxesDirective, AxisDirective } from "@syncfusion/ej2-vue-circulargauge";
export default {
name: "App",
components: {
"ejs-circulargauge": CircularGaugeComponent,
"e-axes": AxesDirective,
"e-axis": AxisDirective
},
data: function () {
return {
border: { color: "#FF0000", width: 2 },
margin: { left: 40, right: 40, top: 40, bottom: 40 },
majorTicks: {
width: 1, color: '#8c8c8c'
},
lineStyle: { width: 2 },
minorTicks: {
width: 1, color: '#8c8c8c'
},
pointers: [{
value: 60,
radius: '60%'
}],
ranges: [{
start: 0,
end: 70,
radius: '110%',
strokeWidth: 10
}, {
start: 70,
end: 110,
radius: '110%',
strokeWidth: 10
}, {
start: 110,
end: 120,
radius: '110%',
strokeWidth: 10
}]
}
}
};
</script>
<style>
.wrapper {
max-width: 400px;
max-height: 100px;
margin: 0 auto;
}
</style>
Radius calculation based on angles
Render semi or quarter circular gauges by modifying the start and end angles. By enabling the radius based on angle option, the radius of circular gauge will be calculated based on the start and end angles to avoid excess white space.
<template>
<div id="app">
<div class='wrapper'>
<ejs-circulargauge>
<e-axes>
<e-axis startAngle=270 endAngle=90 radius='80%' :lineStyle='lineStyle'>
</e-axis>
</e-axes>
</ejs-circulargauge>
</div>
</div>
</template>
<script setup>
import { CircularGaugeComponent as EjsCirculargauge, AxesDirective as EAxes, AxisDirective as EAxis } from "@syncfusion/ej2-vue-circulargauge";
const lineStyle = {
width: 2,
color: '#F8F8F8'
}
</script>
<style>
.wrapper {
max-width: 300px;
max-height: 100px;
margin: 0px;
}
</style>
<template>
<div id="app">
<div class='wrapper'>
<ejs-circulargauge>
<e-axes>
<e-axis startAngle=270 endAngle=90 radius='80%' :lineStyle='lineStyle'>
</e-axis>
</e-axes>
</ejs-circulargauge>
</div>
</div>
</template>
<script>
import { CircularGaugeComponent, AxesDirective, AxisDirective } from "@syncfusion/ej2-vue-circulargauge";
export default {
name: "App",
components: {
"ejs-circulargauge": CirculargaugeComponent,
"e-axes": AxesDirective,
"e-axis": AxisDirective
},
data: function () {
return {
lineStyle: {
width: 2,
color: '#F8F8F8'
},
}
}
};
</script>
<style>
.wrapper {
max-width: 300px;
max-height: 100px;
margin: 0px;
}
</style>