Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用水平和垂直条形图。它在大屏幕上运行良好,但在小屏幕上运行混乱。如何为不同尺寸的屏幕缩放图表?
似乎您正在使用多个系列,每个系列只有一个项目。这是使用renderer.setBarWidth(width)和width根据屏幕分辨率计算的完美案例。
renderer.setBarWidth(width)
width
使用 scale 选项来增加和减少图表的大小..
renderer.setScale((float) 1);