Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/elixir/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Highcharts 散点图中的列?_Highcharts - Fatal编程技术网

Highcharts 散点图中的列?

Highcharts 散点图中的列?,highcharts,Highcharts,代码如下: $(function () { // Give the points a 3D feel by adding a radial gradient Highcharts.getOptions().colors = $.map(Highcharts.getOptions().colors, function (color) { return { radialGradient: { cx: 0.4, cy: 0.3

代码如下:

 $(function () {

// Give the points a 3D feel by adding a radial gradient
Highcharts.getOptions().colors = $.map(Highcharts.getOptions().colors, function (color) {
    return {
        radialGradient: {
            cx: 0.4,
            cy: 0.3,
            r: 0.5
        },
        stops: [
            [0, color],
            [1, Highcharts.Color(color).brighten(-0.2).get('rgb')]
        ]
    };
});

// Set up the chart
var chart = new Highcharts.Chart({
    chart: {
        renderTo: 'container',
        margin: 100,
        type: 'scatter',
        options3d: {
            enabled: true,
            alpha: 10,
            beta: 30,
            depth: 250,
            viewDistance: 5,

            frame: {
                bottom: { size: 1, color: 'rgba(0,0,0,0.2)' },
                back: { size: 1, color: 'rgba(0,0,0,0.4)' },
                side: { size: 8, color: 'rgba(0,0,0,0.6)' }
            }
        }
    },
    title: {
        text: 'Draggable box'
    },
    subtitle: {
        text: 'Click and drag the plot area to rotate in space'
    },
    plotOptions: {
        scatter: {
            width: 10,
            height: 10,
            depth: 10
        }
    },
    yAxis: {
        reversed: true,
        min: 0,
        max: 10,
        title: null
    },
    xAxis: {
        min: 0,
        max: 10,
        gridLineWidth: 1
    },
    zAxis: {
        min: 0,
        max: 10
    },
    legend: {
        enabled: false
    },
    series: [{
        name: 'Reading',
        colorByPoint: true,
        data: [[8, 7, 9], [1, 3, 4], [4, 6, 8], [5, 7, 7], [6, 9, 6], [7, 0, 5], [2, 3, 3], [3, 9, 8], [3, 6, 5], [4, 9, 4], [2, 3, 3], [6, 9, 9], [0, 7, 0], [7, 7, 9], [7, 2, 9], [0, 6, 2], [4, 6, 7], [3, 7, 7], [0, 1, 7], [2, 8, 6], [2, 3, 7], [6, 4, 8], [3, 5, 9], [7, 9, 5], [3, 1, 7], [4, 4, 2], [3, 6, 2], [3, 1, 6], [6, 8, 5], [6, 6, 7], [4, 1, 1], [7, 2, 7], [7, 7, 0], [8, 8, 9], [9, 4, 1], [8, 3, 4], [9, 8, 9], [3, 5, 3], [0, 2, 4], [6, 0, 2], [2, 1, 3], [5, 8, 9], [2, 1, 1], [9, 7, 6], [3, 0, 2], [9, 9, 0], [3, 4, 8], [2, 6, 1], [8, 9, 2], [7, 6, 5], [6, 3, 1], [9, 3, 1], [8, 9, 3], [9, 1, 0], [3, 8, 7], [8, 0, 0], [4, 9, 7], [8, 6, 2], [4, 3, 0], [2, 3, 5], [9, 1, 4], [1, 1, 4], [6, 0, 2], [6, 1, 6], [3, 8, 8], [8, 8, 7], [5, 5, 0], [3, 9, 6], [5, 4, 3], [6, 8, 3], [0, 1, 5], [6, 7, 3], [8, 3, 2], [3, 8, 3], [2, 1, 6], [4, 6, 7], [8, 9, 9], [5, 4, 2], [6, 1, 3], [6, 9, 5], [4, 8, 2], [9, 7, 4], [5, 4, 2], [9, 6, 1], [2, 7, 3], [4, 5, 4], [6, 8, 1], [3, 4, 0], [2, 2, 6], [5, 1, 2], [9, 9, 7], [6, 9, 9], [8, 4, 3], [4, 1, 7], [6, 2, 5], [0, 4, 9], [3, 5, 9], [6, 9, 1], [1, 9, 2]]
    },
             { type: "column",
              depth: 250,
              data: [0]
             }],
    plotOptions: {
        series: {
            pointWidth: 200
        }
    },
});
这是JSFIDLE:

我想有一个图表,提醒非常三维。我只能使用颜色和渐变。这将是非常重要的,以增加其他属性的框架上的顶部,因为这样我可以使用其他颜色和梯度

但这是不可能的

yAxis是反向的,因为将来在底部,yAxis是反向的,在顶部,我会添加一个图像。。。 但在底部什么都没有

因此,我想在散点图中添加一列。但我想唯一一列必须在图表的底部e,现在该列位于图表的顶部和一半之外

有可能吗

也许另一个解决方案是添加一个rect?但问题是我的图表是分散型的,而且可以拖动


谢谢

对不起,我不知道你想做什么。也许你可以发布一张你想要它看起来像什么的图片?这个框架只有3个属性:背面、侧面、底部。我想在顶部再添加一个属性,但这是不可能的。也许我可以在散点图中添加列?如果您看到jsfiddle,我的yAxis是反向的,因此底部属性位于图表的顶部,而botton则什么都没有。可以在我的图表底部添加该列吗?请参阅代码JSFIDLE?现在你们明白了吗?不幸的是你们只能有3个轴,所以旋转并不能解决问题。所以这是默认行为,目前不可能。是的,我理解,但另一种方法是在散点图底部添加一列?请参阅jsfiddle。