2

我正在尝试使用fillToValuejQplot 系列的属性将该系列填充为特定值。

我正在使用这个函数来创建一个系列数组:

/**
 * This function populates the graphSeries array to contain the different properties of each series.
 *
 * @param {string} Yaxis: which Y axis to use(yaxis or y2axis)
 * @param {string} Color: Color code for the graph line
 * @param {string} MarkerColor: Color of the marker for each point on the graph
 * @param {string} Style: Shape of the marker(star, diamond, etc)
 * @param {string} Label: Text value of the series, which would appear on the legend also.
 */ 
    function seriesCreation(Yaxis, Color, MarkerColor, Style, Label, Show){

        graphSeries.push({
            yaxis : Yaxis,
            shadow : true,
            shadowAngle: 45,
            shadowOffset : 2.25,
            color : Color,
            label : Label,
            breakOnNull : true,
            markerOptions: {
                show: true,
                size: 12.0,
                color: MarkerColor,
                style: Style
            },
            show: true,
            fill: Show,
            fillToZero : true,
            fillToValue : 1
        });
    }

如果我有一个没有任何值的值数组,这很好null用,但是如果我有一个带有null值的数组,那么它不会填充颜色也不会画线。

示例:chartData1 工作正常,但 chartData2 不起作用(没有填充颜色,也没有显示线条)

var chartData1 = [["19-Jan-2012", 2.61], ["20-Jan-2012", 5.00], ["21-Jan-2012", 6.00], ["22-Jan-2012", 3.00], ["23-Jan-2012", 8.00], ["24-Jan-2012", 1.00]];

var chartData2 = [["19-Jan-2012", null], ["20-Jan-2012", null], ["21-Jan-2012", 6.00], ["22-Jan-2012", 3.00], ["23-Jan-2012", 8.00], ["24-Jan-2012", null]];

有谁知道如何做到这一点?我认为这个概念可能对很多使用jqplot.

4

1 回答 1

-1

您可以在绘制图表之前进行预处理,在该图表中将每个等于“null”的值修改为整数值:“0”。

于 2013-06-06T13:31:38.647 回答