伙计们,我有一个简单的图表,它显示了每天的问题数量和已解决的问题数量。图表的开始日期是从当前日期开始的-30天。因此,它将始终每30天显示一次数据。

现在,我要做的是从x轴上的数据大于0的位置动态启动图表。

例如,如果29天的签发/解决计数为0,而在第30天,签发计数增加为1,我想从30天开始绘制图形,依此类推。

这是我的图表的代码

$('#performance-cart').highcharts({
    chart: {
        type: 'area', backgroundColor: '#f5f7f7', style: { fontFamily: 'Roboto, Sans-serif', color: '#aeafb1' },
        animation: {
            duration: 1500,
            easing: 'easeOutBounce'
        }
    },
    xAxis: {
        type: 'datetime',
        labels: { style: { color: '#aeafb1' } }
    },
    yAxis: {
        min: 0, max: maxVal, tickInterval: 10, gridLineColor: '#ebeded', gridLineWidth: 1,
        title: { text: '' }, lineWidth: 0, labels: { align: 'right', style: { color: '#aeafb1' } }
    },
    title: { text: '' },
    tooltip: {
        useHTML: true, headerFormat: '<h3 style="color:#ffffff;font-weight:300;padding: 3px 12px;">{point.y:,.1f}</br>',
        backgroundColor: '#515757', pointFormat: 'Issues</h3>'//$('#performanceColumnChart').data('tooltip')
    },
    legend: {
        itemStyle: { color: '#838589' }, symbolWidth: 12, symbolHeight: 5, itemWidth: 80, symbolRadius: 0,
        itemMarginBottom: 10, backgroundColor: '#f5f7f7', verticalAlign: 'top', borderWidth: 0, x: -498, y: 10
    },
    plotOptions: {
        area: {
            fillOpacity: 0.2, cursor: 'pointer', marker: {
                symbol: 'circle', fillColor: '#FFFFFF', lineWidth: 2, lineColor: null,
                allowPointSelect: true
            }
        },
        line: {
            fillOpacity: 0.2, cursor: 'pointer', marker: {
                symbol: 'circle', fillColor: '#FFFFFF', lineWidth: 2, lineColor: null,
                allowPointSelect: true
            }
        },
        column: {
            fillOpacity: 0.2, cursor: 'pointer', marker: {
                symbol: 'circle', fillColor: '#FFFFFF', lineWidth: 2, lineColor: null,
                allowPointSelect: true
            }
        },
        series: {
            pointStart: myDateVariable,
            pointInterval: 24 * 3600 * 1000 // one day
        }
    },
    series: [{
        name: 'Issues', color: '#ff3806',
        data: myIssueData,
        marker: { states: { hover: { fillColor: '#ff3806', lineColor: '#ffffff', lineWidth: 2 } } }
    }, {
        name: 'Resolved', color: '#1da9dd',
        data: myResolvedData,
        marker: { states: { hover: { fillColor: '#1da9dd', lineColor: '#ffffff', lineWidth: 2 } } }
    }]
});


这种方法有可能吗?如果是这样,我想要一些指针。我已经搜索了高级图表的官方文档,但无法从中获得任何帮助。

最佳答案

最简单的方法是预处理您的数据,以使myIssueData满足您的要求。您尚未说明用于生成数据的内容,因此答案取决于您的数据源。对于基于SQL的查询,您可以查询最近的非0发布日期,然后使用该日期作为查询的起点。伪代码:

DECLARE @startDate AS datetime

SELECT @startDate = MAX(date)
FROM myIssuesTable
WHERE issueCountColumn > 0

SELECT date, issueCountColumn
FROM myIssuesTable
WHERE date >= @startDate
ORDER BY date ASC


第二个查询的结果成为您的myIssueData。这不能解决问题计数超过0超过三十天的情况,但是在这种情况下,您可以跳过此查询,并从今天起30天内对date使用直接查询。

09-19 04:53