Commit 910e383d authored by abibave's avatar abibave

Changes for new prototype in Plan Vs Actual Dashboard


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104479 ce508802-f39f-4f6c-b175-0d175dae99d5
parent bdd83ac5
......@@ -1213,11 +1213,15 @@ public class GraphComponent extends Composite
{
for (String graphNo : graphDataMap.keySet())
{
//RootPanel.get("chartContainer"+componentId).clear();
graphDtlList = graphDataMap.get(graphNo);
Tree tree = new TreeBuilder().buildTree(graphDtlList, jsonObjFrGraph, dtSrouce,parameterList,filterList);
//RootPanel.get("chartContainer"+componentId).add(panel);
CommonUtils.printOnConsole("graphDtlList"+graphDtlList);
String treeHeight = graphDtlList.get(3).toString();
String treeWidth = graphDtlList.get(4).toString();
treeHeight = treeHeight.substring(treeHeight.indexOf("[")+1, treeHeight.indexOf("]"));
treeWidth = treeWidth.substring(treeWidth.indexOf("[")+1, treeWidth.indexOf("]"));
tree.setSize(treeWidth, treeHeight);
tree.setStyleName("gwtTree");
componantTitlNameList = new ArrayList<String>();
groupCssTypeNameList = new ArrayList<String>();
componantTitlNameList = (ArrayList<String>) graphDtlList.get(1);
......
......@@ -1502,7 +1502,9 @@ color: #999; !important;
.cardSalesPersonTitle
{
height: 25px;
background-color: #808080;
/* Commented by Aniket on 24/01/2017 as this color is used in Card Type
background-color: #808080; */
background-color: #f0eff5;
color:white;
width:2%;
}
......@@ -1883,3 +1885,34 @@ width:26%;
width: 100% !important;
}
/*End Css for bubble chart by dhanendra 18-01-17*/
/* Start CSS for Plan Vs Actual dashboard by Aniket on dated :23/01/2017*/
.defaultUserImg1
{
height: 27px;
width: 27px;
border-radius: 50%;
background: gray;
padding: 2px;
text-align: center;
color: white;
padding-top: 5px;
display: table;
}
.gwtTree
{
overflow: auto;
position: relative;
zoom: 1;
}
.cardProdImg1
{
border-radius: 50%;
/* margin-left: 5px; */
padding: 2px;
width: 32px;
height: 32px;
}
/* END CSS for Plan Vs Actual dashboard by Aniket on dated :23/01/2017*/
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment