Hi, i'm building a line chart and i wnated to make the line more width. i tried: Series line = new Line(chart.getChart()); line.getXValues().setOrder(ValueListOrder.NONE); line.add(xAxis, yAxis); ChartPen pen = new ChartPen(chart.getChart()); pen.setWidth(10); but it doesn't make a difference. any i...