如何在Morris.js折线图中更改点点颜色和样式?

时间:2012-12-26 07:17:33

标签: javascript graph charts raphael morris.js

我使用morris.js绘制折线图,​​但我无法弄清楚如何在折线图中更改点颜色和样式。 有谁知道如何改变点样式?

感谢。

2 个答案:

答案 0 :(得分:13)

使用pointFillColors属性。 来自文档:

  

pointFillColors系列点的颜色。默认情况下,使用与lineColors相同的值

以下是带蓝线和绿点的图表示例:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="raphael-min.js"></script>
<script type="text/javascript" src="morris.min.js"></script>
<script type="text/javascript">
function drawChart() {
    Morris.Line({
        element: 'chart',
        data: [
            {y: '2012', a: 100},
            {y: '2011', a: 75},
            {y: '2010', a: 50},
            {y: '2009', a: 75},
            {y: '2008', a: 50},
            {y: '2007', a: 75},
            {y: '2006', a: 100}
        ],
        xkey: 'y',
        ykeys: ['a'],
        labels: ['Test series'],
        lineColors: ['#0b62a4'],
        pointFillColors: ['#00ff00']
    });
}

window.onload = drawChart;
</script>
<div id="chart" style="width: 400px; height: 250px;"></div>

答案 1 :(得分:6)

尝试“颜色”而不是“lineColors” 像这样:

function drawChart() {
Morris.Line({
    element: 'chart',
    data: [
        {y: '2012', a: 100},
        {y: '2011', a: 75},
        {y: '2010', a: 50},
        {y: '2009', a: 75},
        {y: '2008', a: 50},
        {y: '2007', a: 75},
        {y: '2006', a: 100}
    ],
    colors: ['#0b62a4','#D58665','#37619d','#fefefe','#A87D8E','#2D619C','#2D9C2F']
});

}

对于每一行都应该有一种颜色。