gpt4 book ai didi

javascript - 获取x轴标签到表格的第一列 - highcharts

转载 作者:搜寻专家 更新时间:2023-10-31 23:03:31 24 4
gpt4 key购买 nike

我正在尝试从 highcharts 创建一个表。

我正在将所有数据正确地获取到表格中。但作为第一列,我需要 x 轴标签。如何得到它。作为列标题,我需要 date,作为列值,我需要日期值。

参见 jsfiidle demo .

截图:

enter image description here

我正在使用以下代码:

Highcharts.drawTable = function() {

// user options
var tableTop = 310,
colWidth = 100,
tableLeft = 20,
rowHeight = 20,
cellPadding = 2.5,
valueDecimals = 1,
valueSuffix = '';

// internal variables
var chart = this,
series = chart.series,
renderer = chart.renderer,
cellLeft = tableLeft;

// draw category labels
$.each(chart.xAxis[0].categories, function(i, name) {

renderer.text(
name,
cellLeft + cellPadding,
tableTop + (i + 2) * rowHeight - cellPadding
)
.css({
fontWeight: 'bold',


})
.add();
});


$.each(series, function(i, serie) {
cellLeft += colWidth;

// Apply the cell text
renderer.text(
serie.name,
cellLeft - cellPadding + colWidth,
tableTop + rowHeight - cellPadding
)
.attr({
align: 'right'
})
.css({
fontWeight: 'bold',
color:'red'
})
.add();

$.each(serie.data, function(row, point) {

// Apply the cell text
renderer.text(
Highcharts.numberFormat(point.y, valueDecimals) + valueSuffix,
cellLeft + colWidth - cellPadding,
tableTop + (row + 2) * rowHeight - cellPadding
)
.attr({
align: 'right'
})
.css({
fontWeight: 'bold',
color:'blue'
})
.add();

// horizontal lines
if (row == 0) {
Highcharts.tableLine( // top
renderer,
tableLeft,
tableTop + cellPadding,
cellLeft + colWidth,
tableTop + cellPadding
);
Highcharts.tableLine( // bottom
renderer,
tableLeft,
tableTop + (serie.data.length + 1) * rowHeight + cellPadding,
cellLeft + colWidth,
tableTop + (serie.data.length + 1) * rowHeight + cellPadding
);
}
// horizontal line
Highcharts.tableLine(
renderer,
tableLeft,
tableTop + row * rowHeight + rowHeight + cellPadding,
cellLeft + colWidth,
tableTop + row * rowHeight + rowHeight + cellPadding
);

});

// vertical lines
if (i == 0) { // left table border
Highcharts.tableLine(
renderer,
tableLeft,
tableTop + cellPadding,
tableLeft,
tableTop + (serie.data.length + 1) * rowHeight + cellPadding
);
}

Highcharts.tableLine(
renderer,
cellLeft,
tableTop + cellPadding,
cellLeft,
tableTop + (serie.data.length + 1) * rowHeight + cellPadding
);

if (i == series.length - 1) { // right table border

Highcharts.tableLine(
renderer,
cellLeft + colWidth,
tableTop + cellPadding,
cellLeft + colWidth,
tableTop + (serie.data.length + 1) * rowHeight + cellPadding
);
}

});

最佳答案

您正在使用datetime xAxis,因此您不能在drawTable 代码中使用类别。而是使用包含来自点的所有时间戳的 series[0].xData。参见 demo .

修改部分:

// draw category labels
$.each(chart.series[0].xData, function(i, name) {

renderer.text(
Highcharts.dateFormat('%a %d %b', name),
cellLeft + cellPadding,
tableTop + (i + 2) * rowHeight - cellPadding
)
.css({
fontWeight: 'bold',


})
.add();
});

关于javascript - 获取x轴标签到表格的第一列 - highcharts,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24382977/

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