凹坑图颜色变化不起作用

时间:2017-01-05 23:57:52

标签: jquery html colors dimple.js

你可以帮我解决我的问题吗? 我目前在这个控制者/国家图表上: http://jsbin.com/yigomu/1/edit?html,js,output

我想知道为什么它没有显示此示例的颜色变化: 1巴蓝色,1巴红色,然后再1巴蓝色,1巴红色等等。 http://jsfiddle.net/uafGn/

即使凹坑图的设置相同。

x = chart.addCategoryAxis("x", ["Fruit", "Year"]);
x.addGroupOrderRule([2012, 2013]);

我尝试了一切,它只是不起作用......

2 个答案:

答案 0 :(得分:0)

您可以像这样更改图表颜色。

chart.defaultColors = [
    new dimple.color("red"),
    new dimple.color("blue"),
]; 

答案 1 :(得分:0)

通过addSeries函数中指定的最后一个字段对颜色进行填充。所以你只需要在那里包含你想要着色的尺寸:

 <activity android:name=".MainActivity"
    android:launchMode="singleInstance"
    android:stateNotNeeded="true">
    <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.LAUNCHER" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.HOME" />
    </intent-filter>
</activity>

变为:

myChart.addSeries("Point", dimple.plot.bar);

编辑:

实际上看你的例子,没有必要&#34; Point&#34;在这个系列中。它应该只是:

myChart.addSeries(["Point", "Year"], dimple.plot.bar);