
com.jwebmp.plugins.jqxwidgets.bulletchart.JQXBulletChartTarget Maven / Gradle / Ivy
/*
* Copyright (C) 2017 Marc Magon
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package com.jwebmp.plugins.jqxwidgets.bulletchart;
import com.jwebmp.core.htmlbuilder.css.colours.ColourHex;
import com.jwebmp.core.htmlbuilder.javascript.JavaScriptPart;
/**
* @author MXM3727
*/
public class JQXBulletChartTarget
extends JavaScriptPart
{
private Double value;
private String label;
private ColourHex color;
private Integer thickness;
public JQXBulletChartTarget()
{
}
public JQXBulletChartTarget(Double value, String label)
{
this.value = value;
this.label = label;
}
public JQXBulletChartTarget(Double value, String label, ColourHex color)
{
this.value = value;
this.label = label;
this.color = color;
}
public JQXBulletChartTarget(Double value, String label, ColourHex color, Integer thickness)
{
this.value = value;
this.label = label;
this.color = color;
this.thickness = thickness;
}
public Double getValue()
{
return value;
}
public void setValue(Double value)
{
this.value = value;
}
public String getLabel()
{
return label;
}
public void setLabel(String label)
{
this.label = label;
}
public ColourHex getColor()
{
return color;
}
public void setColor(ColourHex color)
{
this.color = color;
}
public Integer getThickness()
{
return thickness;
}
public void setThickness(Integer thickness)
{
this.thickness = thickness;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy