software.xdev.chartjs.model.options.scale.radial.RadialTickOptions Maven / Gradle / Ivy
/*
* Copyright © 2023 XDEV Software (https://xdev.software)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package software.xdev.chartjs.model.options.scale.radial;
import software.xdev.chartjs.model.options.scale.AbstractTickOptions;
/**
* @see ChartJS Docs
* @see ChartJS source
*/
public class RadialTickOptions extends AbstractTickOptions
{
protected Number count;
protected Object format;
protected Number maxTickLimits;
protected Number precision;
protected Number stepSize;
public Number getCount()
{
return this.count;
}
public RadialTickOptions setCount(final Number count)
{
this.count = count;
return this;
}
public Object getFormat()
{
return this.format;
}
public RadialTickOptions setFormat(final Object format)
{
this.format = format;
return this;
}
public Number getMaxTickLimits()
{
return this.maxTickLimits;
}
public RadialTickOptions setMaxTickLimits(final Number maxTickLimits)
{
this.maxTickLimits = maxTickLimits;
return this;
}
public Number getPrecision()
{
return this.precision;
}
public RadialTickOptions setPrecision(final Number precision)
{
this.precision = precision;
return this;
}
public Number getStepSize()
{
return this.stepSize;
}
public RadialTickOptions setStepSize(final Number stepSize)
{
this.stepSize = stepSize;
return this;
}
}