JFreechart LookUpPaintScale 颜色渐变

发布于 2024-11-17 22:00:30 字数 200 浏览 5 评论 0 原文

如何将颜色渐变(3 种颜色:红色、黄色、绿色)添加到 LookUpPaintScale? 谢谢

How do you add a color gradient (3 colors: red, yellow, Green) to a LookUpPaintScale in JFreechart?
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情绪失控 2024-11-24 22:00:30

我尝试使用新的 GradientPaint 对其进行初始化,但这只需要 2 种颜色。

您可以尝试 LinearGradientPaint

I tried initializing it with the new GradientPaint, but this only take 2 colors.

You could try LinearGradientPaint.

鼻尖触碰 2024-11-24 22:00:30

你可以尝试这样的事情

....

XYPlot plot = new XYPlot(data1, xAxis, yAxis, null);

    LookupPaintScale ps = new LookupPaintScale(0,101,Color.lightGray);
    ps.add(0, Color.green);
    ps.add(10, Color.yellow);
    ps.add(20, Color.red);

    renderer1.setBlockHeight(0.95f);
    renderer1.setBlockWidth(0.95f);

    renderer1.setPaintScale(ps);
    plot.setRenderer(renderer1);

....

you can try something like this

....

XYPlot plot = new XYPlot(data1, xAxis, yAxis, null);

    LookupPaintScale ps = new LookupPaintScale(0,101,Color.lightGray);
    ps.add(0, Color.green);
    ps.add(10, Color.yellow);
    ps.add(20, Color.red);

    renderer1.setBlockHeight(0.95f);
    renderer1.setBlockWidth(0.95f);

    renderer1.setPaintScale(ps);
    plot.setRenderer(renderer1);

....
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文