I'm using xChart and I would like to draw three different lines, each one with a different color on the same line chart. Up 'til now all I could do is draw them separately and it's not good at all :/ Tried using addSeries() and setting the line colorlike this:
Series red=chart.addSeries("Red", dataX, dataY).setLineColor(Color.red);
but i can't get rid of the markers :/ Edit: to get rid of the marker here's what I did
SeriesMarker marker= SeriesMarker.NONE;
but how can I display three lines in ONE chart, please ?
Here's how you do that since V 3.0.0: