我正在尝试以类似于笔形图的功能(example here)的方式向我的CanvasJS图添加注释,但是还没有找到一种方法。我看过一个示例,其中他们用图像(here)替换了一个点,但这并不完全一样,因为我需要在点之间使用标记并拥有自己的工具提示。在CanvasJS中有什么方法可以做到这一点?

最佳答案

您可以将indexLabelsindexLabelLineThickness一起使用以显示注释,但仅对dataPoints显示toolTip。



var chart = new CanvasJS.Chart("chartContainer", {
title: {
	text: "Line Chart with Index-Labels"
},
data: [{
	type: "line",
	indexLabelBackgroundColor: "LightBlue",
	indexLabelLineThickness: 1,
	dataPoints: [
		{ x: 10, y: 71 },
		{ x: 20, y: 55, indexLabel: "{y}" },
		{ x: 30, y: 50 },
		{ x: 40, y: 65 },
		{ x: 50, y: 95 },
		{ x: 60, y: 68, indexLabel: "{y}" },
		{ x: 70, y: 28 },
		{ x: 80, y: 34, indexLabel: "{y}" },
		{ x: 90, y: 14 }
	]
}]
});

chart.render();

<script type="text/javascript" src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
<div id="chartContainer" style="height: 250px; width: 100%;"></div>

10-06 07:58