![JAR search and dependency download from the Maven repository](/logo.png)
com.github.highcharts4gwt.model.highcharts.option.mock.seriestreemap.MockTooltip Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of highcharts Show documentation
Show all versions of highcharts Show documentation
GWT wrapper for highcharts library.
The newest version!
package com.github.highcharts4gwt.model.highcharts.option.mock.seriestreemap;
import com.github.highcharts4gwt.model.highcharts.option.api.seriestreemap.PointFormatterCallback;
import com.github.highcharts4gwt.model.highcharts.option.api.seriestreemap.Tooltip;
/**
*
*
*/
public class MockTooltip
implements Tooltip
{
private String dateTimeLabelFormats;
private boolean followPointer;
private boolean followTouchMove;
private String footerFormat;
private String headerFormat;
private double hideDelay;
private String pointFormat;
private String shape;
private double valueDecimals;
private String valuePrefix;
private String valueSuffix;
private String xDateFormat;
private String genericField;
private String functionAsString;
public String dateTimeLabelFormats() {
return dateTimeLabelFormats;
}
public MockTooltip dateTimeLabelFormats(String dateTimeLabelFormatsAsJsonString) {
this.dateTimeLabelFormats = dateTimeLabelFormatsAsJsonString;
return this;
}
public boolean followPointer() {
return followPointer;
}
public MockTooltip followPointer(boolean followPointer) {
this.followPointer = followPointer;
return this;
}
public boolean followTouchMove() {
return followTouchMove;
}
public MockTooltip followTouchMove(boolean followTouchMove) {
this.followTouchMove = followTouchMove;
return this;
}
public String footerFormat() {
return footerFormat;
}
public MockTooltip footerFormat(String footerFormat) {
this.footerFormat = footerFormat;
return this;
}
public String headerFormat() {
return headerFormat;
}
public MockTooltip headerFormat(String headerFormat) {
this.headerFormat = headerFormat;
return this;
}
public double hideDelay() {
return hideDelay;
}
public MockTooltip hideDelay(double hideDelay) {
this.hideDelay = hideDelay;
return this;
}
public String pointFormat() {
return pointFormat;
}
public MockTooltip pointFormat(String pointFormat) {
this.pointFormat = pointFormat;
return this;
}
public MockTooltip pointFormatter(PointFormatterCallback pointFormatter) {
return this;
}
public String shape() {
return shape;
}
public MockTooltip shape(String shape) {
this.shape = shape;
return this;
}
public double valueDecimals() {
return valueDecimals;
}
public MockTooltip valueDecimals(double valueDecimals) {
this.valueDecimals = valueDecimals;
return this;
}
public String valuePrefix() {
return valuePrefix;
}
public MockTooltip valuePrefix(String valuePrefix) {
this.valuePrefix = valuePrefix;
return this;
}
public String valueSuffix() {
return valueSuffix;
}
public MockTooltip valueSuffix(String valueSuffix) {
this.valueSuffix = valueSuffix;
return this;
}
public String xDateFormat() {
return xDateFormat;
}
public MockTooltip xDateFormat(String xDateFormat) {
this.xDateFormat = xDateFormat;
return this;
}
public String getFieldAsJsonObject(String fieldName) {
return genericField;
}
public MockTooltip setFieldAsJsonObject(String fieldName, String fieldValueAsJsonObject) {
this.genericField = fieldValueAsJsonObject;
return this;
}
public String getFunctionAsString(String fieldName) {
return functionAsString;
}
public MockTooltip setFunctionAsString(String fieldName, String functionAsString) {
this.functionAsString = functionAsString;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy