Kaydet (Commit) d0e4d1f3 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

map percentile and percent into the same element

This is most likely wrong but I have not yet an idea what should be the
difference between these two.

Change-Id: I3ee87de8d3b3f9a495ee653576a533690d66a3d0
üst 2d74e6c1
......@@ -172,8 +172,14 @@ void ColorScaleRule::importCfvo( const AttributeList& rAttribs )
{
maColorScaleRuleEntries[mnCfvo].mbMax = true;
}
else if( aType == "percent" )
{
maColorScaleRuleEntries[mnCfvo].mbPercent = true;
}
else if( aType == "percentile" )
{
// this is most likely wrong but I have no idea what the difference
// between percent and percentile should be when calculating colors
maColorScaleRuleEntries[mnCfvo].mbPercent = true;
}
......
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