Package com.priint.pubserver.dashboard
Class GeneralChartData
- java.lang.Object
-
- com.priint.pubserver.dashboard.GeneralChartData
-
public class GeneralChartData extends java.lang.ObjectStructure definition of data for charts(line, area, bar) in dashboards
-
-
Constructor Summary
Constructors Constructor Description GeneralChartData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.String>getColors()Get the colors information in Chart.java.util.List<java.util.Map<java.lang.String,java.lang.Object>>getData()Gets the list values for all blocks in Chart.java.lang.StringgetName()voidsetColors(java.util.Map<java.lang.String,java.lang.String> colors)Set the colors information in Chart.voidsetData(java.util.List<java.util.Map<java.lang.String,java.lang.Object>> data)Sets the list values for all blocks in Chart.voidsetName(java.lang.String name)
-
-
-
Method Detail
-
getName
public java.lang.String getName()
- Returns:
- - name of Chart
String
-
setName
public void setName(java.lang.String name)
- Parameters:
name- of Chart
-
getData
public java.util.List<java.util.Map<java.lang.String,java.lang.Object>> getData()
Gets the list values for all blocks in Chart.- Returns:
- possible object is
ListofMap
-
setData
public void setData(java.util.List<java.util.Map<java.lang.String,java.lang.Object>> data)
Sets the list values for all blocks in Chart.- Parameters:
data- possible object isListofMap
-
getColors
public java.util.Map<java.lang.String,java.lang.String> getColors()
Get the colors information in Chart.- Returns:
Mapwhere keyStringis a name of single bar in block of chart (Should one of key fromgetData()} and value isStringRGB color value of this single bar
-
setColors
public void setColors(java.util.Map<java.lang.String,java.lang.String> colors)
Set the colors information in Chart.- Parameters:
colors-Mapwhere keyStringis a name of single bar in block of chart (Should one of key fromgetData()} and value isStringRGB color value of this single bar.
-
-