AmChart.makeChart 个属性没有效果

AmChart.makeChart properties not having an effect

我正在使用 AmCharts 的 makeChart 方法构建折线图,请参阅 jsfiddle - http://jsfiddle.net/Lw7ahxwh/

我遇到的问题是一些属性没有改变图表,而同一领域的其他属性是:

        graphs: [
          {
              id: "sensordata1",
              title: "Sensor 1",
              valueField: "sensor5",
              type: "line",
              linethickness: 100,    //the linethickness does not change
              linecolor: "#000000"   //the linecolor does not change
          },

linethicknesslinecolor 之外的所有参数都有效。

        chartScrollbar: {
            updateOnReleaseOnly: true,
            graph: "sensordata1",
            position: "bottom", //cannot get the scrollbar to the bottom
            height: 100         //the scrollbar does not change height with this number
        },

ChartScrollbar graphupdateOnReleaseOnly 有效,但 positionheight 似乎被忽略了。

jsfiddle 中还有一些其他示例 - 请参阅代码中的注释。任何帮助将不胜感激 - 随时 Fork the jsfiddle。

amCharts 中的所有配置参数都区分大小写,并且应采用驼峰式。所以你应该把linethicknesslinecolor分别改成lineThicknesslineColor

这是您根据上述更新后的 fiddle:

http://jsfiddle.net/Lw7ahxwh/3/

我还注意到在某些情况下您有尾随逗号(数组中最后一个元素之后的逗号)。 (在 graphschartCursor 中)尾随逗号通常由现代浏览器处理,但在旧版浏览器(如 IE7)上可能会产生语法错误。

上面的 link,也已修复。