2 * ================================================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ================================================================================
20 package org.openecomp.portalsdk.analytics.model.runtime;
22 public class BarChartOptions {
23 private boolean verticalOrientation;
24 private boolean stackedChart;
25 private boolean displayBarControls;
26 private boolean xAxisDateType;
27 private boolean minimizeXAxisTickers;
28 private boolean timeAxis;
29 private boolean yAxisLogScale;
31 public boolean isVerticalOrientation() {
32 return verticalOrientation;
34 public void setVerticalOrientation(boolean verticalOrientation) {
35 this.verticalOrientation = verticalOrientation;
37 public boolean isStackedChart() {
40 public void setStackedChart(boolean stackedChart) {
41 this.stackedChart = stackedChart;
43 public boolean isDisplayBarControls() {
44 return displayBarControls;
46 public void setDisplayBarControls(boolean displayBarControls) {
47 this.displayBarControls = displayBarControls;
49 public boolean isxAxisDateType() {
52 public void setxAxisDateType(boolean xAxisDateType) {
53 this.xAxisDateType = xAxisDateType;
55 public boolean isMinimizeXAxisTickers() {
56 return minimizeXAxisTickers;
58 public void setMinimizeXAxisTickers(boolean minimizeXAxisTickers) {
59 this.minimizeXAxisTickers = minimizeXAxisTickers;
61 public boolean isTimeAxis() {
64 public void setTimeAxis(boolean timeAxis) {
65 this.timeAxis = timeAxis;
67 public boolean isyAxisLogScale() {
70 public void setyAxisLogScale(boolean yAxisLogScale) {
71 this.yAxisLogScale = yAxisLogScale;