com.github.abel533.echarts.style.LinkStyle Maven / Gradle / Ivy
/*
* The MIT License (MIT)
*
* Copyright (c) 2014-2015 [email protected]
*
* 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 com.github.abel533.echarts.style;
import com.github.abel533.echarts.code.LinkType;
import java.io.Serializable;
/**
* Description: LinkStyle
*
* @author liuzh
*/
public class LinkStyle implements Serializable {
private static final long serialVersionUID = -547421614869188616L;
/**
* 线条类型,可选为:'curve'(曲线) | 'line'(直线)
*/
private LinkType type;
/**
* 线条颜色
*/
private String borderColor;
/**
* 线宽
*/
private Integer borderWidth;
/**
* 获取type值
*/
public LinkType type() {
return this.type;
}
/**
* 设置type值
*
* @param type
*/
public LinkStyle type(LinkType type) {
this.type = type;
return this;
}
/**
* 获取borderColor值
*/
public String borderColor() {
return this.borderColor;
}
/**
* 设置borderColor值
*
* @param borderColor
*/
public LinkStyle borderColor(String borderColor) {
this.borderColor = borderColor;
return this;
}
/**
* 获取borderWidth值
*/
public Integer borderWidth() {
return this.borderWidth;
}
/**
* 设置borderWidth值
*
* @param borderWidth
*/
public LinkStyle borderWidth(Integer borderWidth) {
this.borderWidth = borderWidth;
return this;
}
/**
* 获取type值
*/
public LinkType getType() {
return type;
}
/**
* 设置type值
*
* @param type
*/
public void setType(LinkType type) {
this.type = type;
}
/**
* 获取borderColor值
*/
public String getBorderColor() {
return borderColor;
}
/**
* 设置borderColor值
*
* @param borderColor
*/
public void setBorderColor(String borderColor) {
this.borderColor = borderColor;
}
/**
* 获取borderWidth值
*/
public Integer getBorderWidth() {
return borderWidth;
}
/**
* 设置borderWidth值
*
* @param borderWidth
*/
public void setBorderWidth(Integer borderWidth) {
this.borderWidth = borderWidth;
}
}