7e99dc6e3d138218303c2dee33a1c8d89a7a3d53
[portal/sdk.git] /
1 /*-
2  * ================================================================================
3  * eCOMP Portal SDK
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
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
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  * ================================================================================
19  */
20 package org.openecomp.portalsdk.analytics.model.runtime;
21
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;
30         
31         public boolean isVerticalOrientation() {
32                 return verticalOrientation;
33         }
34         public void setVerticalOrientation(boolean verticalOrientation) {
35                 this.verticalOrientation = verticalOrientation;
36         }
37         public boolean isStackedChart() {
38                 return stackedChart;
39         }
40         public void setStackedChart(boolean stackedChart) {
41                 this.stackedChart = stackedChart;
42         }
43         public boolean isDisplayBarControls() {
44                 return displayBarControls;
45         }
46         public void setDisplayBarControls(boolean displayBarControls) {
47                 this.displayBarControls = displayBarControls;
48         }
49         public boolean isxAxisDateType() {
50                 return xAxisDateType;
51         }
52         public void setxAxisDateType(boolean xAxisDateType) {
53                 this.xAxisDateType = xAxisDateType;
54         }
55         public boolean isMinimizeXAxisTickers() {
56                 return minimizeXAxisTickers;
57         }
58         public void setMinimizeXAxisTickers(boolean minimizeXAxisTickers) {
59                 this.minimizeXAxisTickers = minimizeXAxisTickers;
60         }
61         public boolean isTimeAxis() {
62                 return timeAxis;
63         }
64         public void setTimeAxis(boolean timeAxis) {
65                 this.timeAxis = timeAxis;
66         }
67         public boolean isyAxisLogScale() {
68                 return yAxisLogScale;
69         }
70         public void setyAxisLogScale(boolean yAxisLogScale) {
71                 this.yAxisLogScale = yAxisLogScale;
72         }
73
74         
75 }