3

我是 Zingchart 的新手,我遇到了一些问题。

我想要一个带有第二个图表(或者这里是预览)的堆积条形图。

1.)我在为其设置颜色时遇到堆叠问题,我在图表中看不到差异 - 为什么?-(是否可以将颜色应用于每一个条的堆叠?)

2.) 只有点击背景才能缩放,但不能点击数据集。由于我设置了很多数据,我无法缩放。我该怎么做才能在充满数据的图表上应用缩放?

3.) 如何正确设置预览/图表的位置?无论我如何设置 preview.position,只有 y 变化,而不是高度或 x 值。这也很愚蠢,因为我看不到预览的正确句柄。也尝试用边距调整它,但也没有成功。我想要大图表顶部的预览。

这是我正在玩的东西:http: //jsfiddle.net/z1zwg6ae/1/

     "graphset": [{
    "type": "bar",
        "x": "1%",
        "y": "25%",
        "height": "100%",
        "background-color": "#fff",

        "plot": {
        "stacked": true,
            "stack-type": "100%"
    },

        "scale-x": {
        "line-color": "#555",
            "line-width": "4px",

            "zooming": true,
            "guide": {
            "visible": false
        },
            "tick": {
            "line-color": "#333",
        }
    },
        "chart": {
        "position": "0 0"

    },
        "scale-y": {
        "min-value": 0,
            "max-value": 100
    },
        "scroll-x": {
        "bar": {
            "background-color": "#777"
        },
            "handle": {
            "background-color": "#76DF20"
        }
    },
        "zoom": {
        "background-color": "#20DFC6"
    },
        "plot": {
        "line-width": 10,
            "max-trackers": 9999,
            "mode": "normal",
            "js-rule": "myfunc()",
            "shadow": false,
            "marker": {
            "type": "none"
        }
    },
        "preview": {
        "height": 100,
            "position": "200 100",
            "width": "90%"
    },

        "plotarea": {
        "adjust-layout": true,
            "margin-right": 35
    },
        "series": [{
4

1 回答 1

5

看起来您从我们的图库中选择了一个相当复杂的图表进行测试!让我在一个更简单的图表上向您展示一些示例。

  1. 您可以通过在每个系列对象上设置 backgroundColor 来设置堆叠颜色。在系列对象中,我们也可以添加一个 hoverState 对象来控制鼠标悬停颜色。

  2. 开箱即用的缩放只能通过单击和拖动背景来控制。您可以使用预览窗口,也可以使用api 的缩放方法来创建放大图表的功能。. 您可以在库外部的外部 div 中使用这些方法,或者侦听node_click事件并将缩放方法附加到它上以复制您想要实现的目标。

  3. 可以使用预览对象中的位置和边距属性来修改预览窗口的位置。

我是 ZingChart 团队的一员,如有任何其他问题,请随时与我们联系!

var myConfig = {
  type: "bar",
  plot:{
    stacked:true,
    stackType:"normal" 
  },
  preview : {
    position : "50% 0%",
    margin : "10 50 80 50",
    height: 50
  },
  plotarea : {
    margin : "90 50 50 50"
  },
  scaleX : {
    zooming : true
  },
  scaleY : {
    zooming : true
  },
  series: [
    {
      values :[20,40,25,50,15,45,33,34],
      backgroundColor : "#3386ff",
      hoverState :{
        backgroundColor : "#2c61ad",
      }
    },
    {
      values:[5,30,21,18,59,50,28,33],
      backgroundColor : "#1963bc",
      hoverState :{
        backgroundColor : "#4988e4",
      }
    },
    {
      values:[30,5,18,21,33,41,29,15],
      backgroundColor : "#44d0e9",
      hoverState :{
        backgroundColor : "#a6f1ff",
      }
    }
  ]
};

zingchart.render({ 
	id : 'myChart', 
	data : myConfig, 
	height: 400, 
	width: 600 
});
<!DOCTYPE html>
<html>
	<head>
		<script src= "https://cdn.zingchart.com/zingchart.min.js"></script>
	</head>
	<body>
		<div id='myChart'></div>
	</body>
</html>

于 2015-11-04T00:50:19.400 回答