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

nl.crashdata.chartjs.data.simple.SimpleChartJsHoverConfig Maven / Gradle / Ivy

package nl.crashdata.chartjs.data.simple;

import nl.crashdata.chartjs.data.ChartJsHoverConfig;
import nl.crashdata.chartjs.data.ChartJsInteractionMode;

public class SimpleChartJsHoverConfig implements ChartJsHoverConfig
{
	private static final long serialVersionUID = 1L;

	private ChartJsInteractionMode mode;

	private Boolean intersect;

	@Override
	public ChartJsInteractionMode getMode()
	{
		return mode;
	}

	public void setMode(ChartJsInteractionMode mode)
	{
		this.mode = mode;
	}

	@Override
	public Boolean isIntersect()
	{
		return intersect;
	}

	public void setIntersect(Boolean intersect)
	{
		this.intersect = intersect;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy