[StandarDialRange] Modifying thickness

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
SeymO
Posts: 1
Joined: Tue Aug 24, 2010 1:02 pm
antibot: No, of course not.

[StandarDialRange] Modifying thickness

Post by SeymO » Tue Aug 24, 2010 1:06 pm

Code: Select all

	StandardDialRange range = new StandardDialRange(intermValue2, maxValue, Color.red);
		range.setInnerRadius(0.55);
		range.setOuterRadius(0.55);
		plot.addLayer(range);*
Inner and Outer radius are set at the same value so the range is only one line. Is there a way to modify thickness of the range line?

Locked