HTML-тэги не поддерживаются в indexLabels на данный момент.Однако вы можете использовать indexLabelMaxWidth , чтобы добиться того же.Пожалуйста, проверьте код ниже.
var options = {
exportEnabled: true,
animationEnabled: true,
title:{
text: "Operational Excellence"
},
data: [{
type: "pie",
showInLegend: false,
indexLabel: "{name}",
indexLabelMaxWidth: 100,
indexLabelPlacement: "inside",
dataPoints: [
{ y: 16.66666666666667, name: "Innovation" },
{ y: 16.66666666666667, name: "Leadership Behaviours" },
{ y: 16.66666666666667, name: "Continuous Improvement" },
{ y: 16.66666666666667, name: "Employee Engagement" },
{ y: 16.66666666666667, name: "Exceed Customer Expectations"},
{ y: 16.66666666666667, name: "High Reliability" }
]
}]
};
$("#chartContainer").CanvasJSChart(options);
<script type="text/javascript" src="https://canvasjs.com/assets/script/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="https://canvasjs.com/assets/script/jquery.canvasjs.min.js"></script>
<div id="chartContainer" style="height: 360px; width: 100%;"></div>