2012-12-26 7 views

Antwort

12

Verwenden Sie die pointFillColors Eigenschaft. Aus der Dokumentation:

pointFillColors Farben für die Serienpunkte. In der Standardeinstellung die gleichen Werte wie lineColors

Hier verwendet das Beispiel des Diagramms mit blauen Linie und grüne Punkte:

<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> 
6

Statt „lineColors“, versuchen Sie „Farben“ wie folgt aus:

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'] 
}); 

}

für jede Zeile sollte es eine Farbe sein.

+0

Was ist, wenn Sie dynamische Daten haben, die nicht für die Zeit bekannt sind, in der Farben gesetzt werden? –

+0

Dann können Sie ein Array von Farben haben und in dieses Array eintauchen, um eine Farbe herauszuziehen –