/** * Copyright 2012-2013 Wicked Charts (http://wicked-charts.googlecode.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.googlecode.wickedcharts.highcharts.options; import java.awt.Color; import java.io.Serializable; import com.googlecode.wickedcharts.highcharts.options.color.ColorReference; import com.googlecode.wickedcharts.highcharts.options.color.SimpleColor; /** * Defines the configuration of the "legend" option. * * @see <a * href="http://api.highcharts.com/highcharts#legend">http://api.highcharts.com/highcharts#legend</a> * @author Tom Hombergs (tom.hombergs@gmail.com) * */ public class Legend implements Serializable { private static final long serialVersionUID = 1L; private HorizontalAlignment align; private ColorReference backgroundColor; private ColorReference borderColor; private Integer borderRadius; private Integer borderWidth; private Boolean enabled; private Boolean floating; private Integer lineHeight; private Integer margin; private Boolean reversed; private Boolean rtl; private Boolean shadow; private VerticalAlignment verticalAlign; private Integer width; private Integer x; private Integer y; private LegendLayout layout; private CssStyle itemStyle; private CssStyle itemHoverStyle; private CssStyle itemHiddenStyle; public Legend() { } public Legend(final Boolean enabled) { this.enabled = enabled; } public HorizontalAlignment getAlign() { return this.align; } public ColorReference getBackgroundColor() { return this.backgroundColor; } public ColorReference getBorderColor() { return this.borderColor; } public Integer getBorderRadius() { return this.borderRadius; } public Integer getBorderWidth() { return this.borderWidth; } public Boolean getEnabled() { return this.enabled; } public Boolean getFloating() { return this.floating; } public CssStyle getItemHiddenStyle() { return this.itemHiddenStyle; } public CssStyle getItemHoverStyle() { return this.itemHoverStyle; } public CssStyle getItemStyle() { return this.itemStyle; } public LegendLayout getLayout() { return this.layout; } public Integer getLineHeight() { return this.lineHeight; } public Integer getMargin() { return this.margin; } public Boolean getReversed() { return this.reversed; } public Boolean getRtl() { return this.rtl; } public Boolean getShadow() { return this.shadow; } public VerticalAlignment getVerticalAlign() { return this.verticalAlign; } public Integer getWidth() { return this.width; } public Integer getX() { return this.x; } public Integer getY() { return this.y; } public Legend setAlign(final HorizontalAlignment align) { this.align = align; return this; } public Legend setBackgroundColor(final Color color) { this.backgroundColor = new SimpleColor(color); return this; } public Legend setBackgroundColor(final ColorReference backgroundColor) { this.backgroundColor = backgroundColor; return this; } public Legend setBorderColor(final Color color) { this.borderColor = new SimpleColor(color); return this; } public Legend setBorderColor(final ColorReference borderColor) { this.borderColor = borderColor; return this; } public Legend setBorderRadius(final Integer borderRadius) { this.borderRadius = borderRadius; return this; } public Legend setBorderWidth(final Integer borderWidth) { this.borderWidth = borderWidth; return this; } public Legend setEnabled(final Boolean enabled) { this.enabled = enabled; return this; } public Legend setFloating(final Boolean floating) { this.floating = floating; return this; } public Legend setItemHiddenStyle(final CssStyle itemHiddenStyle) { this.itemHiddenStyle = itemHiddenStyle; return this; } public Legend setItemHoverStyle(final CssStyle itemHoverStyle) { this.itemHoverStyle = itemHoverStyle; return this; } public Legend setItemStyle(final CssStyle itemStyle) { this.itemStyle = itemStyle; return this; } public Legend setLayout(final LegendLayout layout) { this.layout = layout; return this; } public Legend setLineHeight(final Integer lineHeight) { this.lineHeight = lineHeight; return this; } public Legend setMargin(final Integer margin) { this.margin = margin; return this; } public Legend setReversed(final Boolean reversed) { this.reversed = reversed; return this; } public Legend setRtl(final Boolean rtl) { this.rtl = rtl; return this; } public Legend setShadow(final Boolean shadow) { this.shadow = shadow; return this; } public Legend setVerticalAlign(final VerticalAlignment verticalAlign) { this.verticalAlign = verticalAlign; return this; } public Legend setWidth(final Integer width) { this.width = width; return this; } public Legend setX(final Integer x) { this.x = x; return this; } public Legend setY(final Integer y) { this.y = y; return this; } }