Data labels in Vue Chart component
13 Jun 202424 minutes to read
Data label can be added to a chart series by enabling the visible
option in the dataLabel. By default, the labels will arrange smartly without overlapping.
<template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'></e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script setup>
import { provide } from "vue";
import { ChartComponent as EjsChart, ColumnSeries, Category, DataLabel,
SeriesCollectionDirective as ESeriesCollection, SeriesDirective as ESeries
} from "@syncfusion/ej2-vue-charts";
const seriesData = [
{ x: 'Jan', y: -7.1 }, { x: 'Feb', y: -3.7 },
{ x: 'Mar', y: 2 }, { x: 'Apr', y: 6.3 },
{ x: 'May', y: 13.3 }, { x: 'Jun', y: 18.0 },
{ x: 'Jul', y: 19.8 }, { x: 'Aug', y: 18.1 },
{ x: 'Sep', y: 13.1 }, { x: 'Oct', y: 4.1 },
{ x: 'Nov', y: -3.8 }, { x: 'Dec', y: -6.8 }
];
const primaryXAxis = {
valueType: 'Category'
};
const marker = {
//Data label for chart series
dataLabel: { visible: true }
};
const title = "Alaska Weather Statistics - 2016";
provide('chart', [ColumnSeries, Category, DataLabel]);
</script>
<style>
#container {
height: 350px;
}
</style><template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'></e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartComponent, ColumnSeries, Category, DataLabel, SeriesCollectionDirective, SeriesDirective } from "@syncfusion/ej2-vue-charts";
export default {
name: "App",
components: {
"ejs-chart":ChartComponent,
"e-series-collection":SeriesCollectionDirective,
"e-series":SeriesDirective,
},
data() {
return {
seriesData: [
{ x: 'Jan', y: -7.1 }, { x: 'Feb', y: -3.7 },
{ x: 'Mar', y: 2 }, { x: 'Apr', y: 6.3 },
{ x: 'May', y: 13.3 }, { x: 'Jun', y: 18.0 },
{ x: 'Jul', y: 19.8 }, { x: 'Aug', y: 18.1 },
{ x: 'Sep', y: 13.1 }, { x: 'Oct', y: 4.1 },
{ x: 'Nov', y: -3.8 }, { x: 'Dec', y: -6.8 }
],
primaryXAxis: {
valueType: 'Category'
},
marker: {
//Data label for chart series
dataLabel: { visible: true }
},
title: "Alaska Weather Statistics - 2016"
};
},
provide: {
chart: [ColumnSeries, Category, DataLabel]
}
};
</script>
<style>
#container {
height: 350px;
}
</style>Note: To use datalabel feature, we need to inject
DataLabelinto theprovide.
Position
Using position property, you can place the label either on
Top, Middle,Bottom or Outer (outer is applicable for column and bar type series).
<template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script setup>
import { provide } from "vue";
import { ChartComponent as EjsChart, ColumnSeries, Category, DataLabel,
SeriesCollectionDirective as ESeriesCollection, SeriesDirective as ESeries
} from "@syncfusion/ej2-vue-charts";
const seriesData = [
{ x: 'Jan', y: -7.1 }, { x: 'Feb', y: -3.7 },
{ x: 'Mar', y: 2 }, { x: 'Apr', y: 6.3 },
{ x: 'May', y: 13.3 }, { x: 'Jun', y: 18.0 },
{ x: 'Jul', y: 19.8 }, { x: 'Aug', y: 18.1 },
{ x: 'Sep', y: 13.1 }, { x: 'Oct', y: 4.1 },
{ x: 'Nov', y: -3.8 }, { x: 'Dec', y: -6.8 }
];
const primaryXAxis = {
valueType: 'Category'
};
const marker = {
dataLabel: { visible: true, position: 'Middle' }
};
const title = "Alaska Weather Statistics - 2016";
provide('chart', [ColumnSeries, Category, DataLabel]);
</script>
<style>
#container {
height: 350px;
}
</style><template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartComponent, ColumnSeries, Category, DataLabel, SeriesCollectionDirective, SeriesDirective } from "@syncfusion/ej2-vue-charts";
export default {
name: "App",
components: {
"ejs-chart":ChartComponent,
"e-series-collection":SeriesCollectionDirective,
"e-series":SeriesDirective,
},
data() {
return {
seriesData: [
{ x: 'Jan', y: -7.1 }, { x: 'Feb', y: -3.7 },
{ x: 'Mar', y: 2 }, { x: 'Apr', y: 6.3 },
{ x: 'May', y: 13.3 }, { x: 'Jun', y: 18.0 },
{ x: 'Jul', y: 19.8 }, { x: 'Aug', y: 18.1 },
{ x: 'Sep', y: 13.1 }, { x: 'Oct', y: 4.1 },
{ x: 'Nov', y: -3.8 }, { x: 'Dec', y: -6.8 }
],
primaryXAxis: {
valueType: 'Category'
},
marker: {
dataLabel: { visible: true, position: 'Middle' }
},
title: "Alaska Weather Statistics - 2016"
};
},
provide: {
chart: [ColumnSeries, Category, DataLabel]
}
};
</script>
<style>
#container {
height: 350px;
}
</style>Note: The position
Outeris applicable for column and bar type series.
Data Label Template
Label content can be formatted by using the template option. Inside the template, you can add the placeholder text ${point.x} and ${point.y} to display corresponding data points x & y value. Using template property, you can set data label template in chart.
<template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script setup>
import { provide } from "vue";
import { ChartComponent as EjsChart, ColumnSeries, Category, DataLabel,
SeriesCollectionDirective as ESeriesCollection, SeriesDirective as ESeries
} from "@syncfusion/ej2-vue-charts";
import {createApp} from 'vue';
const app = createApp({});
let contentVue = app.component("contentTemplate", {
template: `<div><div></div><div></div></div>`,
data() {
return {
data: {}
};
}
});
let contentTemplate = function() {
return { template: contentVue };
};
const seriesData = [
{ x: 'Jan', y: -7.1 }, { x: 'Feb', y: -3.7 },
{ x: 'Mar', y: 2 }, { x: 'Apr', y: 6.3 },
{ x: 'May', y: 13.3 }, { x: 'Jun', y: 18.0 },
{ x: 'Jul', y: 19.8 }, { x: 'Aug', y: 18.1 },
{ x: 'Sep', y: 13.1 }, { x: 'Oct', y: 4.1 },
{ x: 'Nov', y: -3.8 }, { x: 'Dec', y: -6.8 }
];
const primaryXAxis = {
valueType: 'Category'
};
const marker = {
dataLabel: { visible: true, position: 'Middle' }, template: contentTemplate
};
const title = "Alaska Weather Statistics - 2016";
provide('chart', [ColumnSeries, Category, DataLabel]);
</script>
<style>
#container {
height: 350px;
}
</style><template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartComponent, ColumnSeries, Category, DataLabel, SeriesCollectionDirective, SeriesDirective } from "@syncfusion/ej2-vue-charts";
import {createApp} from 'vue';
const app = createApp({});
let contentVue = app.component("contentTemplate", {
template: `<div><div></div><div></div></div>`,
data() {
return {
data: {}
};
}
});
let contentTemplate = function() {
return { template: contentVue };
};
export default {
name: "App",
components: {
"ejs-chart":ChartComponent,
"e-series-collection":SeriesCollectionDirective,
"e-series":SeriesDirective,
},
data() {
return {
seriesData: [
{ x: 'Jan', y: -7.1 }, { x: 'Feb', y: -3.7 },
{ x: 'Mar', y: 2 }, { x: 'Apr', y: 6.3 },
{ x: 'May', y: 13.3 }, { x: 'Jun', y: 18.0 },
{ x: 'Jul', y: 19.8 }, { x: 'Aug', y: 18.1 },
{ x: 'Sep', y: 13.1 }, { x: 'Oct', y: 4.1 },
{ x: 'Nov', y: -3.8 }, { x: 'Dec', y: -6.8 }
],
primaryXAxis: {
valueType: 'Category'
},
marker: { dataLabel: { visible: true, position: 'Middle',
template: contentTemplate } },
title: "Alaska Weather Statistics - 2016"
};
},
provide: {
chart: [ColumnSeries, Category, DataLabel]
}
};
</script>
<style>
#container {
height: 350px;
}
</style>Text Mapping
Text from the data source can be mapped using name property.
<template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script setup>
import { provide } from "vue";
import { ChartComponent as EjsChart, ColumnSeries, Category, DataLabel,
SeriesCollectionDirective as ESeriesCollection, SeriesDirective as ESeries
} from "@syncfusion/ej2-vue-charts";
const seriesData = [
{ x: 'Jan', y: 12, text: 'January : 12°C' }, { x: 'Feb', y: 8, text: 'February : 8°C' },
{ x: 'Mar', y: 11, text: 'March : 11°C' }, { x: 'Apr', y: 6, text: 'April : 6°C' }
];
const primaryXAxis = {
valueType: 'Category'
};
const marker = {
dataLabel: { visible: true, name: 'text' }
};
const title = "Alaska Weather Statistics - 2016";
provide('chart', [ColumnSeries, Category, DataLabel]);
</script>
<style>
#container {
height: 350px;
}
</style><template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartComponent, ColumnSeries, Category, DataLabel, SeriesCollectionDirective, SeriesDirective } from "@syncfusion/ej2-vue-charts";
export default {
name: "App",
components: {
"ejs-chart":ChartComponent,
"e-series-collection":SeriesCollectionDirective,
"e-series":SeriesDirective,
},
data() {
return {
seriesData:[{ x: 'Jan', y: 12, text: 'January : 12°C' }, { x: 'Feb', y: 8, text: 'February : 8°C' },
{ x: 'Mar', y: 11, text: 'March : 11°C' }, { x: 'Apr', y: 6, text: 'April : 6°C' }],
primaryXAxis: {
valueType: 'Category'
},
marker: { dataLabel: { visible: true, name: 'text'} },
title: "Alaska Weather Statistics - 2016"
};
},
provide: {
chart: [ColumnSeries, Category, DataLabel]
}
};
</script>
<style>
#container {
height: 350px;
}
</style>Format
Data label for the chart can be formatted using format property. You can use the global formatting options, such as ‘n’, ‘p’, and ‘c’.
<template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script setup>
import { provide } from "vue";
import { ChartComponent as EjsChart, ColumnSeries, Category, DataLabel,
SeriesCollectionDirective as ESeriesCollection, SeriesDirective as ESeries
} from "@syncfusion/ej2-vue-charts";
const seriesData = [
{ x: 'Jan', y: 12, text: 'January : 12°C' }, { x: 'Feb', y: 8, text: 'February : 8°C' },
{ x: 'Mar', y: 11, text: 'March : 11°C' }, { x: 'Apr', y: 6, text: 'April : 6°C' }
];
const primaryXAxis = {
valueType: 'Category'
};
const marker = {
dataLabel: { visible: true, name: 'text' }
};
const title = "Alaska Weather Statistics - 2016";
provide('chart', [ColumnSeries, Category, DataLabel]);
</script>
<style>
#container {
height: 350px;
}
</style><template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartComponent, ColumnSeries, Category, DataLabel, SeriesCollectionDirective, SeriesDirective } from "@syncfusion/ej2-vue-charts";
export default {
name: "App",
components: {
"ejs-chart":ChartComponent,
"e-series-collection":SeriesCollectionDirective,
"e-series":SeriesDirective,
},
data() {
return {
seriesData:[{ x: 'Jan', y: 12, text: 'January : 12°C' }, { x: 'Feb', y: 8, text: 'February : 8°C' },
{ x: 'Mar', y: 11, text: 'March : 11°C' }, { x: 'Apr', y: 6, text: 'April : 6°C' }],
primaryXAxis: {
valueType: 'Category'
},
marker: { dataLabel: { visible: true, format: 'n2'} },
title: "Alaska Weather Statistics - 2016"
};
},
provide: {
chart: [ColumnSeries, Category, DataLabel]
}
};
</script>
<style>
#container {
height: 350px;
}
</style>| Value | Format | Resultant Value | Description |
|---|---|---|---|
| 1000 | n1 | 1000.0 | The number is rounded to 1 decimal place. |
| 1000 | n2 | 1000.00 | The number is rounded to 2 decimal places. |
| 1000 | n3 | 1000.000 | The number is rounded to 3 decimal place. |
| 0.01 | p1 | 1.0% | The number is converted to percentage with 1 decimal place. |
| 0.01 | p2 | 1.00% | The number is converted to percentage with 2 decimal place. |
| 0.01 | p3 | 1.000% | The number is converted to percentage with 3 decimal place. |
| 1000 | c1 | $1000.0 | The currency symbol is appended to number and number is rounded to 1 decimal place. |
| 1000 | c2 | $1000.00 | The currency symbol is appended to number and number is rounded to 2 decimal place. |
Margin
margin for data label can be applied to using left, right, bottom and top properties.
<template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script setup>
import { provide } from "vue";
import { ChartComponent as EjsChart, ColumnSeries, Category, DataLabel, SeriesCollectionDirective as ESeriesCollection, SeriesDirective as ESeries } from "@syncfusion/ej2-vue-charts";
const seriesData = [
{ x: 'Jan', y: -7.1 }, { x: 'Feb', y: -3.7 },
{ x: 'Mar', y: 2 }, { x: 'Apr', y: 6.3 },
{ x: 'May', y: 13.3 }, { x: 'Jun', y: 18.0 },
{ x: 'Jul', y: 19.8 }, { x: 'Aug', y: 18.1 },
{ x: 'Sep', y: 13.1 }, { x: 'Oct', y: 4.1 },
{ x: 'Nov', y: -3.8 }, { x: 'Dec', y: -6.8 }
];
const primaryXAxis = {
valueType: 'Category'
};
const marker = {
dataLabel: { visible: true,border:{width: 1, color : 'red'},
margin:{
left:5,
right:5,
top:5,
bottom:5
} }
};
const title = "Alaska Weather Statistics - 2016";
provide('chart', [ColumnSeries, Category, DataLabel]);
</script>
<style>
#container {
height: 350px;
}
</style><template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartComponent, ColumnSeries, Category, DataLabel, SeriesCollectionDirective, SeriesDirective } from "@syncfusion/ej2-vue-charts";
export default {
name: "App",
components: {
"ejs-chart":ChartComponent,
"e-series-collection":SeriesCollectionDirective,
"e-series":SeriesDirective,
},
data() {
return {
seriesData: [
{ x: 'Jan', y: -7.1 }, { x: 'Feb', y: -3.7 },
{ x: 'Mar', y: 2 }, { x: 'Apr', y: 6.3 },
{ x: 'May', y: 13.3 }, { x: 'Jun', y: 18.0 },
{ x: 'Jul', y: 19.8 }, { x: 'Aug', y: 18.1 },
{ x: 'Sep', y: 13.1 }, { x: 'Oct', y: 4.1 },
{ x: 'Nov', y: -3.8 }, { x: 'Dec', y: -6.8 }
],
primaryXAxis: {
valueType: 'Category'
},
marker: { dataLabel: { visible: true,border:{width: 1, color : 'red'},
margin:{
left:5,
right:5,
top:5,
bottom:5
} }
},
title: "Alaska Weather Statistics - 2016"
};
},
provide: {
chart: [ColumnSeries, Category, DataLabel]
}
};
</script>
<style>
#container {
height: 350px;
}
</style>DataLabel Rotation
Using angle property, you can rotate the data label by its given angle.
<template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script setup>
import { provide } from "vue";
import { ChartComponent as EjsChart, ColumnSeries, Category, DataLabel, SeriesCollectionDirective as ESeriesCollection,
SeriesDirective as ESeries
} from "@syncfusion/ej2-vue-charts";
const seriesData = [
{ x: 'Jan', y: -7.1 }, { x: 'Feb', y: -3.7 },
{ x: 'Mar', y: 2 }, { x: 'Apr', y: 6.3 },
{ x: 'May', y: 13.3 }, { x: 'Jun', y: 18.0 },
{ x: 'Jul', y: 19.8 }, { x: 'Aug', y: 18.1 },
{ x: 'Sep', y: 13.1 }, { x: 'Oct', y: 4.1 },
{ x: 'Nov', y: -3.8 }, { x: 'Dec', y: -6.8 }
];
const primaryXAxis = {
valueType: 'Category'
};
const marker = {
dataLabel: { visible: true,border:{width: 1, color : 'red'},
margin:{
left:5,
right:5,
top:5,
bottom:5
}, angle: 45, enableRotation: true}
};
const title = "Alaska Weather Statistics - 2016";
provide('chart', [ColumnSeries, Category, DataLabel]);
</script>
<style>
#container {
height: 350px;
}
</style><template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartComponent, ColumnSeries, Category, DataLabel, SeriesCollectionDirective, SeriesDirective } from "@syncfusion/ej2-vue-charts";
export default {
name: "App",
components: {
"ejs-chart":ChartComponent,
"e-series-collection":SeriesCollectionDirective,
"e-series":SeriesDirective,
},
data() {
return {
seriesData: [
{ x: 'Jan', y: -7.1 }, { x: 'Feb', y: -3.7 },
{ x: 'Mar', y: 2 }, { x: 'Apr', y: 6.3 },
{ x: 'May', y: 13.3 }, { x: 'Jun', y: 18.0 },
{ x: 'Jul', y: 19.8 }, { x: 'Aug', y: 18.1 },
{ x: 'Sep', y: 13.1 }, { x: 'Oct', y: 4.1 },
{ x: 'Nov', y: -3.8 }, { x: 'Dec', y: -6.8 }
],
primaryXAxis: {
valueType: 'Category'
},
marker: { dataLabel: { visible: true,border:{width: 1, color : 'red'},
margin:{
left:5,
right:5,
top:5,
bottom:5
}, angle: 45, enableRotation: true }
},
title: "Alaska Weather Statistics - 2016"
};
},
provide: {
chart: [ColumnSeries, Category, DataLabel]
}
};
</script>
<style>
#container {
height: 350px;
}
</style>Customization
stroke and border of data label can be customized using fill and border properties. Rounded corners
can be customized using rx and ry properties.
<template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script setup>
import { provide } from "vue";
import { ChartComponent as EjsChart, ColumnSeries, Category, DataLabel,
SeriesCollectionDirective as ESeriesCollection, SeriesDirective as ESeries
} from "@syncfusion/ej2-vue-charts";
const seriesData = [
{ x: 'Jan', y: -7.1 }, { x: 'Feb', y: -3.7 },
{ x: 'Mar', y: 2 }, { x: 'Apr', y: 6.3 },
{ x: 'May', y: 13.3 }, { x: 'Jun', y: 18.0 },
{ x: 'Jul', y: 19.8 }, { x: 'Aug', y: 18.1 },
{ x: 'Sep', y: 13.1 }, { x: 'Oct', y: 4.1 },
{ x: 'Nov', y: -3.8 }, { x: 'Dec', y: -6.8 }
];
const primaryXAxis = {
valueType: 'Category'
};
const marker = {
dataLabel: { visible: true,
border:{width: 2, color : 'red'},
rx:10, ry: 10
}
};
const title = "Alaska Weather Statistics - 2016";
provide('chart', [ColumnSeries, Category, DataLabel]);
</script>
<style>
#container {
height: 350px;
}
</style><template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartComponent, ColumnSeries, Category, DataLabel, SeriesCollectionDirective, SeriesDirective } from "@syncfusion/ej2-vue-charts";
export default {
name: "App",
components: {
"ejs-chart":ChartComponent,
"e-series-collection":SeriesCollectionDirective,
"e-series":SeriesDirective,
},
data() {
return {
seriesData: [
{ x: 'Jan', y: -7.1 }, { x: 'Feb', y: -3.7 },
{ x: 'Mar', y: 2 }, { x: 'Apr', y: 6.3 },
{ x: 'May', y: 13.3 }, { x: 'Jun', y: 18.0 },
{ x: 'Jul', y: 19.8 }, { x: 'Aug', y: 18.1 },
{ x: 'Sep', y: 13.1 }, { x: 'Oct', y: 4.1 },
{ x: 'Nov', y: -3.8 }, { x: 'Dec', y: -6.8 }
],
primaryXAxis: {
valueType: 'Category'
},
marker:{ dataLabel: { visible: true,
border:{width: 2, color : 'red'},
rx:10, ry: 10
}
},
title: "Alaska Weather Statistics - 2016"
};
},
provide: {
chart: [ColumnSeries, Category, DataLabel]
}
};
</script>
<style>
#container {
height: 350px;
}
</style>Note:
rxandryproperties requiresbordervalues not to be null.
Customizing Specific Point
You can also customize the specific marker and label using pointRenderandtextRender event. pointRender event allows you to change the shape, color and border for a point, whereas the textRender event allows you to change the text for the point.
<template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis' :pointRender='pointRender' :textRender='textRender'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script setup>
import { provide } from "vue";
import { ChartComponent as EjsChart, ColumnSeries, Category, DataLabel,
SeriesCollectionDirective as ESeriesCollection, SeriesDirective as ESeries
} from "@syncfusion/ej2-vue-charts";
const seriesData = [
{ x: 'Jan', y: -7.1 }, { x: 'Feb', y: -3.7 },
{ x: 'Mar', y: 2 }, { x: 'Apr', y: 6.3 },
{ x: 'May', y: 13.3 }, { x: 'Jun', y: 18.0 },
{ x: 'Jul', y: 19.8 }, { x: 'Aug', y: 18.1 },
{ x: 'Sep', y: 13.1 }, { x: 'Oct', y: 4.1 },
{ x: 'Nov', y: -3.8 }, { x: 'Dec', y: -6.8 }
];
const primaryXAxis = {
valueType: 'Category'
};
const marker = {
dataLabel: { visible: true }
};
const title = "Alaska Weather Statistics - 2016";
provide('chart', [ColumnSeries, Category, DataLabel]);
const pointRender = function(args) {
if (args.point.index === 6) {
args.fill = 'red'
}
};
const textRender = function(args) {
if (args.point.index === 6) {
args.text = 'Maximum Temperature';
args.color = 'red';
}
};
</script>
<style>
#container {
height: 350px;
}
</style><template>
<div id="app">
<ejs-chart id= "container" :title='title' :primaryXAxis='primaryXAxis' :pointRender='pointRender' :textRender='textRender'>
<e-series-collection>
<e-series :dataSource='seriesData' type='Column' xName='x' yName='y' name='Warmest' :marker='marker'> </e-series>
</e-series-collection>
</ejs-chart>
</div>
</template>
<script>
import { ChartComponent, ColumnSeries, Category, DataLabel, SeriesCollectionDirective, SeriesDirective } from "@syncfusion/ej2-vue-charts";
export default {
name: "App",
components: {
"ejs-chart":ChartComponent,
"e-series-collection":SeriesCollectionDirective,
"e-series":SeriesDirective,
},
data() {
return {
seriesData: [
{ x: 'Jan', y: -7.1 }, { x: 'Feb', y: -3.7 },
{ x: 'Mar', y: 2 }, { x: 'Apr', y: 6.3 },
{ x: 'May', y: 13.3 }, { x: 'Jun', y: 18.0 },
{ x: 'Jul', y: 19.8 }, { x: 'Aug', y: 18.1 },
{ x: 'Sep', y: 13.1 }, { x: 'Oct', y: 4.1 },
{ x: 'Nov', y: -3.8 }, { x: 'Dec', y: -6.8 }
],
primaryXAxis: {
valueType: 'Category'
},
marker:{ dataLabel: { visible: true } },
title: "Alaska Weather Statistics - 2016"
};
},
provide: {
chart: [ColumnSeries, Category, DataLabel]
},
methods: {
pointRender: function(args) {
if (args.point.index === 6) {
args.fill = 'red'
}
},
textRender: function(args) {
if (args.point.index === 6) {
args.text = 'Maximum Temperature';
args.color = 'red';
}
}
}
};
</script>
<style>
#container {
height: 350px;
}
</style>Show percentage based on each series points
You can calculate the percentage value based on the sum for each series using the seriesRender and textRender events in the chart. In seriesRender calculate the sum of each series y values and In textRender calculate percentage value based on the sum value and modify the text.
<template>
<div class="control-section">
<div align="center">
<ejs-chart
style="display: block"
:theme="theme"
align="center"
id="chartcontainer"
:title="title"
:primaryXAxis="primaryXAxis"
:primaryYAxis="primaryYAxis"
:chartArea="chartArea"
:width="width"
:tooltip="tooltip"
:textRender="onTextRender"
:seriesRender="onSeriesRender"
>
<e-series-collection>
<e-series
:dataSource="seriesData"
type="Column"
xName="x"
yName="y"
name="Gold"
width="2"
:marker="marker"
>
</e-series>
<e-series
:dataSource="seriesData1"
type="Column"
xName="x"
yName="y"
name="Silver"
width="2"
:marker="marker"
>
</e-series>
<e-series
:dataSource="seriesData2"
type="Column"
xName="x"
yName="y"
name="Bronze"
width="2"
:marker="marker"
>
</e-series>
</e-series-collection>
</ejs-chart>
</div>
</div>
</template>
<style scoped>
</style>
<script setup>
import { provide } from "vue";
import { Browser } from "@syncfusion/ej2-base";
import {
ChartComponent as EjsChart,
ColumnSeries,
Category,
DataLabel,
Tooltip,
Legend,
SeriesCollectionDirective as ESeriesCollection,
SeriesDirective as ESeries,
} from "@syncfusion/ej2-vue-charts";
let total = [];
const seriesData = [
{ x: "USA", y: 46 },
{ x: "GBR", y: 27 },
{ x: "CHN", y: 26 },
];
const seriesData1 = [
{ x: "USA", y: 37 },
{ x: "GBR", y: 23 },
{ x: "CHN", y: 18 },
];
const seriesData2 = [
{ x: "USA", y: 38 },
{ x: "GBR", y: 17 },
{ x: "CHN", y: 26 },
];
//Initializing Primary X Axis
const primaryXAxis = {
valueType: "Category",
interval: 1,
majorGridLines: { width: 0 },
};
const chartArea = { border: { width: 0 } };
//Initializing Primary Y Axis
const primaryYAxis = {
majorGridLines: { width: 0 },
majorTickLines: { width: 0 },
lineStyle: { width: 0 },
labelStyle: { color: "transparent" },
};
const width = Browser.isDevice ? "100%" : "60%";
const marker = {
dataLabel: {
visible: true,
position: "Top",
font: { fontWeight: "600", color: "#ffffff" },
},
};
const tooltip = {
enable: true,
};
const title = "Olympic Medal Counts - RIO";
provide("chart", [ColumnSeries, Legend, DataLabel, Category, Tooltip]);
const onSeriesRender = function (args) {
for (let i = 0; i < args.data.length; i++) {
if (!total[args.data[i].x]) total[args.data[i].x] = 0;
total[args.data[i].x] += parseInt(args.data[i].y);
}
};
const onTextRender = function (args) {
let percentage = (parseInt(args.text) / total[args.point.x]) * 100;
percentage = percentage % 1 === 0 ? percentage : percentage.toFixed(2);
args.text = percentage + "%";
};
</script><template>
<div class="control-section">
<div align="center">
<ejs-chart
style="display: block"
:theme="theme"
align="center"
id="chartcontainer"
:title="title"
:primaryXAxis="primaryXAxis"
:primaryYAxis="primaryYAxis"
:chartArea="chartArea"
:width="width"
:tooltip="tooltip"
:textRender="onTextRender"
:seriesRender="onSeriesRender"
>
<e-series-collection>
<e-series
:dataSource="seriesData"
type="Column"
xName="x"
yName="y"
name="Gold"
width="2"
:marker="marker"
>
</e-series>
<e-series
:dataSource="seriesData1"
type="Column"
xName="x"
yName="y"
name="Silver"
width="2"
:marker="marker"
>
</e-series>
<e-series
:dataSource="seriesData2"
type="Column"
xName="x"
yName="y"
name="Bronze"
width="2"
:marker="marker"
>
</e-series>
</e-series-collection>
</ejs-chart>
</div>
</div>
</template>
<style scoped>
</style>
<script>
import { Browser } from "@syncfusion/ej2-base";
import {
ChartComponent,
ColumnSeries,
Category,
DataLabel,
Tooltip,
Legend,
SeriesCollectionDirective,
SeriesDirective,
} from "@syncfusion/ej2-vue-charts";
let total = [];
export default {
name: "App",
components: {
"ejs-chart":ChartComponent,
"e-series-collection":SeriesCollectionDirective,
"e-series":SeriesDirective,
},
data: function () {
return {
seriesData: [
{ x: "USA", y: 46 },
{ x: "GBR", y: 27 },
{ x: "CHN", y: 26 },
],
seriesData1: [
{ x: "USA", y: 37 },
{ x: "GBR", y: 23 },
{ x: "CHN", y: 18 },
],
seriesData2: [
{ x: "USA", y: 38 },
{ x: "GBR", y: 17 },
{ x: "CHN", y: 26 },
],
//Initializing Primary X Axis
primaryXAxis: {
valueType: "Category",
interval: 1,
majorGridLines: { width: 0 },
},
chartArea: { border: { width: 0 } },
//Initializing Primary Y Axis
primaryYAxis: {
majorGridLines: { width: 0 },
majorTickLines: { width: 0 },
lineStyle: { width: 0 },
labelStyle: { color: "transparent" },
},
width: Browser.isDevice ? "100%" : "60%",
marker: {
dataLabel: {
visible: true,
position: "Top",
font: { fontWeight: "600", color: "#ffffff" },
},
},
tooltip: {
enable: true,
},
title: "Olympic Medal Counts - RIO",
};
},
provide: {
chart: [ColumnSeries, Legend, DataLabel, Category, Tooltip],
},
methods: {
onSeriesRender: function (args) {
for (let i = 0; i < args.data.length; i++) {
if (!total[args.data[i].x]) total[args.data[i].x] = 0;
total[args.data[i].x] += parseInt(args.data[i].y);
}
},
onTextRender: function (args) {
let percentage = (parseInt(args.text) / total[args.point.x]) * 100;
percentage = percentage % 1 === 0 ? percentage : percentage.toFixed(2);
args.text = percentage + "%";
},
},
};
</script>