View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.syncope.client.console.chartjs;
20  
21  import java.util.List;
22  
23  /**
24   * Provides some additional point color and point stroke color information.
25   */
26  public abstract class PointColorDataSet extends BaseDataSet {
27  
28      private static final long serialVersionUID = 1581171902504828797L;
29  
30      /** The point color. */
31      private String pointColor = "rgba(220,220,220,1)";
32  
33      /** The point stroke color. */
34      private String pointStrokeColor = "#fff";
35  
36      /**
37       * Instantiates a new abstract point color data set.
38       *
39       * @param data the values
40       */
41      public PointColorDataSet(final List<? extends Number> data) {
42          super(data);
43      }
44  
45      /**
46       * Gets the point color.
47       *
48       * @return the point color
49       */
50      public String getPointColor() {
51          return pointColor;
52      }
53  
54      /**
55       * Sets the point color.
56       *
57       * @param pointColor the point color
58       */
59      public void setPointColor(final String pointColor) {
60          this.pointColor = pointColor;
61      }
62  
63      /**
64       * Gets the point stroke color.
65       *
66       * @return the point stroke color
67       */
68      public String getPointStrokeColor() {
69          return pointStrokeColor;
70      }
71  
72      /**
73       * Sets the point stroke color.
74       *
75       * @param pointStrokeColor the point stroke color
76       */
77      public void setPointStrokeColor(final String pointStrokeColor) {
78          this.pointStrokeColor = pointStrokeColor;
79      }
80  }