在Angular应用程序中使用chart.js的注释插件,所以很抱歉。注释插件应该做的是在x轴上的value = 1处创建一条垂直线。
但是,此时什么也没有出现。没有抛出任何错误或类似的东西,但是没有一行。
图表上的X轴为浮点形式,因此我尝试了value=1.0
,但此举再没有成功。我应该指出,colorschemes插件运行良好,因此也不是某种程度上禁用了插件。
import * as Chart from 'chart.js';
import 'chartjs-plugin-colorschemes';
import 'chartjs-plugin-annotation';
[...]
let massPopChart = new Chart(this.myChart, {
type: 'bubble',
data: {
labels:['Jobs']
},
options: {
plugins:{
colorschemes: {
scheme: 'brewer.YlOrBr9'
},
annotation: {
annotations: [{
type: 'line',
mode: 'vertical',
scaleID: 'y-axis-0',
value: 1,
borderColor: 'red',
borderWidth: 5,
label: {
enabled: false,
content: 'Test label'
}
}]
}
}, legend: {
display: false
}, title: {
display: true,
text: 'Location Quotient of Jobs in Region'
}, scales: {
yAxes: [{
scaleLabel: {
display: true,
labelString: "# of Jobs"
}
}],
xAxes: [{
scaleLabel: {
display: true,
labelString: "LQ"
}
}]
}
}
});
this.jobTitles.forEach((value) => {
var r = parseInt(this.regionData.merged_titles[value])/100;
if(r < 5) r = 5;
else if (r>15) r = 15;
massPopChart.data.datasets.push({
label: value,
data: [{
x: parseFloat(this.regionData.location_quotient[value]),
y: parseInt(this.regionData.merged_titles[value]),
r: r
}]
});
massPopChart.update();
});
我的图表制作得很好。所有点都出现了,并且颜色由colorscheme插件定义,但是x轴上的1处没有红色实线。
http://haml.info/docs/yardoc/file.REFERENCE.html#plain-filter
答案 0 :(得分:0)
如果将来有人遇到这个问题,我偶然发现的解决方案是转到node_modules > @types > chart.js > index.d.ts
,并将行annotation?: Object;
放在第217行的interface ChartOptions
部分中。然后我重组了这样的代码...
let massPopChart = new Chart(this.myChart, {
type: 'bubble',
data: {
labels:['Jobs']
},
options: {
plugins:{
colorschemes: {
scheme: 'brewer.YlOrBr9'
}
}, legend: {
display: false
}, title: {
display: true,
text: 'Location Quotient of Jobs in Region'
}, annotation: {
annotations: [{
type: 'line',
mode: 'vertical',
scaleID: 'y-axis-0',
value: 1,
borderColor: 'red',
borderWidth: 5,
label: {
enabled: false,
content: 'Test label'
}
}]
}, scales: {
yAxes: [{
scaleLabel: {
display: true,
labelString: "# of Jobs"
}
}],
xAxes: [{
scaleLabel: {
display: true,
labelString: "LQ"
}
}]
}
}
});
将“注释”部分从“插件:”部分移至常规的“选项”部分。