gpt4 book ai didi

javascript - 组合图表 - 带条形图的文字图表

转载 作者:行者123 更新时间:2023-12-02 23:32:45 24 4
gpt4 key购买 nike

我正在我的一个项目中使用 highcharts,我想知道是否可以有条形图和文字云图的组合图表。如下图所示

enter image description here

是否可以实现此目的,或者是否有任何开源图表库可以实现此目的。

我尝试过的:

我已经查找了所有可用的图表库,但没有找到任何合适的选项。由于它是起点,因此没有什么需要指定的。

请帮忙。我被困住了。

最佳答案

您需要使用 wordcloud 图表创建和添加单独的容器:

chart: {
events: {
load: function() {
var points = this.series[0].points;

points.forEach(function(p) {
var wContainer = $('<div>');

wContainer.addClass('wordCloudContainer');

wContainer.css({
top: this.plotTop,
left: p.plotX
});

$('#mainContainer').append(wContainer);

Highcharts.chart(wContainer[0], {
chart: {
width: p.pointWidth + 40,
height: 200
},
title: {
text: ''
},
credits: {
enabled: false
},
series: [{
type: 'wordcloud',
data: [
['one', 1],
['two', 2],
['three', 3]
]
}]
});
}, this);
}
}
}

现场演示: http://jsfiddle.net/BlackLabel/2jahsfyp/

API引用: https://api.highcharts.com/highcharts/chart.events.load

关于javascript - 组合图表 - 带条形图的文字图表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56425174/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com