All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.xdev.chartjs.model.options.scale.radial.RadialLinearScaleOptions Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
/*
 * 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.AbstractCoreScaleOptions;
import software.xdev.chartjs.model.options.scale.GridLineConfiguration;


/**
 * @see ChartJS Docs
 * @see ChartJS Source
 */
public class RadialLinearScaleOptions extends AbstractCoreScaleOptions
{
	protected Boolean animate;
	protected Number startAngle;
	protected AngleLines angleLines;
	protected Boolean beginAtZero;
	protected PointLabels pointLabels;
	protected GridLineConfiguration grid;
	
	public RadialLinearScaleOptions()
	{
		super("radialLinear");
	}
	
	public Boolean getAnimate()
	{
		return this.animate;
	}
	
	public RadialLinearScaleOptions setAnimate(final Boolean animate)
	{
		this.animate = animate;
		return this.self();
	}
	
	public Number getStartAngle()
	{
		return this.startAngle;
	}
	
	public RadialLinearScaleOptions setStartAngle(final Number startAngle)
	{
		this.startAngle = startAngle;
		return this.self();
	}
	
	public AngleLines getAngleLines()
	{
		return this.angleLines;
	}
	
	public RadialLinearScaleOptions setAngleLines(final AngleLines angleLines)
	{
		this.angleLines = angleLines;
		return this.self();
	}
	
	public Boolean getBeginAtZero()
	{
		return this.beginAtZero;
	}
	
	public RadialLinearScaleOptions setBeginAtZero(final Boolean beginAtZero)
	{
		this.beginAtZero = beginAtZero;
		return this.self();
	}
	
	public PointLabels getPointLabels()
	{
		return this.pointLabels;
	}
	
	public RadialLinearScaleOptions setPointLabels(final PointLabels pointLabels)
	{
		this.pointLabels = pointLabels;
		return this.self();
	}
	
	public GridLineConfiguration getGrid()
	{
		return this.grid;
	}
	
	public RadialLinearScaleOptions setGrid(final GridLineConfiguration grid)
	{
		this.grid = grid;
		return this.self();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy