我正在使用 jquery 浮点图表。我想在工具提示中显示真实数据。它只显示 Y 轴数据。在垂直线上,如果有两种类型的数据,每一种是 50(总计 = 100)。
第一部分显示 50,但上部显示 100。它应该显示 50 也为 100-50。
这是我的这个逻辑的代码。
var options1 = {
series: {stack: stack,
lines: { show: lines, fill: false, steps: steps },
bars: { show: bars, barWidth: 0.4 },
points: { show: true}
},
grid: {
hoverable: true //IMPORTANT! this is needed for tooltip to work
},
tooltip: true,
tooltipOpts: {
content: "%s : %y",
shifts: {
x: -60,
y: 25
}
},
legend:{'position':'ne','show':true,'margin':[-3, -20],'backgroundOpacity':0.1, 'noColumns': 4, 'container': null},
xaxis: {ticks: dest4 ,},
};
我能用这条线做什么
content: "%s : %y",