Commit 1652bbed authored by dkasliwal's avatar dkasliwal

Add chart poperties for disable secondary scale value from graph


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@105204 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 2661947b
......@@ -863,6 +863,20 @@ public class MetaDataDtl
jsnStringKey = new JSONString("labelDisplay");
metaDataMap.put(jsnStringKey, dataStringValue);
}
/*Start Secondary scale y-axis value disable */
if ("showsecondarylimits".equalsIgnoreCase(chartPropertyNode.getNodeName()))
{
dataStringValue = new JSONString(chartPropertyNode.getChildNodes().item(0).getNodeValue());
jsnStringKey = new JSONString("showSecondaryLimits");
metaDataMap.put(jsnStringKey, dataStringValue);
}
if ("showdivlinesecondaryvalue".equalsIgnoreCase(chartPropertyNode.getNodeName()))
{
dataStringValue = new JSONString(chartPropertyNode.getChildNodes().item(0).getNodeValue());
jsnStringKey = new JSONString("showDivLineSecondaryValue");
metaDataMap.put(jsnStringKey, dataStringValue);
}
/*End Secondary scale y-axis value disable */
//ended show sum property for bar chart to metaDataMap by swati on 16 Nov 2015
}
}
......
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