gpt4 book ai didi

jquery - 使用 jQuery 浮点图绘制曲线

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

我目前有一个流程图,它是一个非常简单的折线图。尝试使用 CurvedLines 插件平滑曲线,但点没有变圆。

我的代码在这里:

var d = [[2010, ], [2011, 0], [2012, 1000], [2013, 835000], [2014, 5100000], [2015, 15300000], [2016, 33400000], [2017, ]];


var data1 = [{data: d, color: "#0086e5", points: { symbol: "circle", fillColor: "#ffffff", radius: 5 }, lines: {show: true}, points: {show: true}, curvedLines: {apply: true, monotonicFit: true}}];

var options = {
series: {
curvedLines: {active: true}
}
};

/*series: {
lines: { show: true },
points: { show: true },
curvedLines: {active: true}
},*/

$.plot("#homechart",data1, {

xaxis: {
tickColor: '#def2ff',
tickDecimals: 0

},

yaxis: {
tickLength: 0,
show: false
},
grid: {
backgroundColor: { colors: [ "#effaff", "#d7f3ff" ] },
borderWidth: 0
}

});

var ticklabel = $('.tickLabel');
ticklabel.each(function(index, domElement) {
var $element = $(domElement);

if ($element.text() === "2010") {
$element.hide();
}

if ($element.text() === "2017") {
$element.hide();
}
}, options);

图表已生成,但没有圆角曲线。 Flot Chart

最佳答案

绘图调用的选项缺少

series: {
curvedLines: {active: true}
}

(以及 x 轴的最小/最大值)。

添加后,它可以工作:https://jsfiddle.net/khwc415t/

关于jquery - 使用 jQuery 浮点图绘制曲线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37681222/

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