With dvxCharts you can format the axis labels and the data point labels.
This sample demonstrates how to format the pie chart labels.
For detailed implementation, please take a look at the HTML code tab.
<!DOCTYPE html>
<html>
<head>
<title>Labels Formatting Example - JavaScript Chart by dvxCharts</title>
<link rel="stylesheet" type="text/css" href="../../css/dvxCharts.chart.min.css" />
<link rel="stylesheet" type="text/css" href="../../themes/base/styles.css" />
<script src="../../js/dvxCharts.chart.min.js" type="text/javascript"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<style>
.example-container {
width: 100%;
max-width: 500px;
height: 300px;
}
</style>
<style>
.mySeries .dvx-chart-series-label {
fill: white;
font-size: 15px;
}
</style>
<script lang="javascript" type="text/javascript">
var chart = new dvxCharts.Chart({
title: {
text: 'Labels Formatting'
},
legend: {
title: {
text: 'Countries'
}
},
animation: {
duration: 1
},
series: [
{
type: 'pie',
class: 'mySeries',
labels: {
stringFormat: '%d%%',
valueType: 'percentage'
},
data: [['United States', 65], ['United Kingdom', 58],
['Germany', 30], ['India', 60], ['Russia', 65], ['China', 75]]
}
]
});
chart.write('container');
</script>
</head>
<body>
<div>
<div id="container" class="example-container"></div>
</div>
</body>
</html>