値にJFreeChart
基づいて、XY 折れ線グラフ/曲線のさまざまな領域に色を付けようとしていy
ます。私は s をオーバーライドしてXYLineAndShapeRenderer
い ますが、 (整数値)のみを取得しているため、 sgetItemPaint(int row, int col)
間の線の色付けをどのように処理するかはわかりません。x
itemPaint
x
final XYLineAndShapeRenderer renderer = new XYLineAndShapeRenderer() {
@Override
@Override
public Paint getItemPaint(int row, int col) {
System.out.println(col+","+dataset.getY(row, col));
double y=dataset.getYValue(row, col);
if(y<=3)return ColorUtil.hex2Rgb("#7DD2F7");
if(y<=4)return ColorUtil.hex2Rgb("#9BCB3B");
if(y<=5)return ColorUtil.hex2Rgb("#FFF100");
if(y<=6)return ColorUtil.hex2Rgb("#FAA419");
if(y<=10)return ColorUtil.hex2Rgb("#ED1B24");
//getPlot().getDataset(col).
return super.getItemPaint(row,col);
}
}