org.primefaces.model.charts.axes.AxesTicks Maven / Gradle / Ivy
/*
* The MIT License
*
* Copyright (c) 2009-2023 PrimeTek Informatics
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.primefaces.model.charts.axes;
import java.io.IOException;
import java.io.Serializable;
import org.primefaces.model.charts.ChartFont;
import org.primefaces.util.ChartUtils;
import org.primefaces.util.FastStringWriter;
/**
* The tick configuration is nested under the scale configuration.
*/
public class AxesTicks implements Serializable {
private static final long serialVersionUID = 1L;
private boolean display = true;
private ChartFont font;
private String fontColor;
private String fontFamily;
private Number fontSize;
private String fontStyle;
private boolean reverse;
/**
* Gets the display
*
* @return display
*/
public boolean isDisplay() {
return display;
}
/**
* Sets the display
*
* @param display If true, show tick marks.
*/
public void setDisplay(boolean display) {
this.display = display;
}
/**
* Gets the fontColor
*
* @return fontColor
*/
public String getFontColor() {
return fontColor;
}
/**
* Sets the fontColor
*
* @param fontColor Font color for tick labels.
*/
public void setFontColor(String fontColor) {
this.fontColor = fontColor;
}
/**
* Gets the fontFamily
*
* @return fontFamily
*/
public String getFontFamily() {
return fontFamily;
}
/**
* Sets the fontFamily
*
* @param fontFamily Font family for the tick labels.
*/
public void setFontFamily(String fontFamily) {
this.fontFamily = fontFamily;
}
/**
* Gets the fontSize
*
* @return fontSize
*/
public Number getFontSize() {
return fontSize;
}
/**
* Sets the fontSize
*
* @param fontSize Font size for the tick labels.
*/
public void setFontSize(Number fontSize) {
this.fontSize = fontSize;
}
/**
* Gets the fontStyle
*
* @return fontStyle
*/
public String getFontStyle() {
return fontStyle;
}
/**
* Sets the fontStyle
*
* @param fontStyle Font style for the tick labels.
*/
public void setFontStyle(String fontStyle) {
this.fontStyle = fontStyle;
}
/**
* Gets the reverse
*
* @return reverse
*/
public boolean isReverse() {
return reverse;
}
/**
* Sets the reverse
*
* @param reverse Reverses order of tick labels.
*/
public void setReverse(boolean reverse) {
this.reverse = reverse;
}
public ChartFont getFont() {
if (font == null) {
font = new ChartFont();
font.setFamily(this.fontFamily);
font.setSize(this.fontSize);
font.setStyle(this.fontStyle);
}
return font;
}
public void setFont(ChartFont font) {
this.font = font;
}
/**
* Write the common ticks options of axes
*
* @return options as JSON object
* @throws java.io.IOException If an I/O error occurs
*/
public String encode() throws IOException {
try (FastStringWriter fsw = new FastStringWriter()) {
ChartUtils.writeDataValue(fsw, "display", this.display, false);
ChartUtils.writeDataValue(fsw, "color", this.fontColor, true);
ChartUtils.writeDataValue(fsw, "reverse", this.reverse, true);
getFont().write(fsw);
return fsw.toString();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy