Beispiel #1
0
 public ColorMapEntry(int cutOff, string startCssColor)
 {
     CutOff     = cutOff;
     StartColor = new ColorMapColor(startCssColor);
     BlendStyle = ColorMapBlendStyle.None;
     EndColor   = new ColorMapColor(startCssColor);
 }
Beispiel #2
0
 public ColorMapEntry(int cutOff, string startCssColor, ColorMapBlendStyle blendStyle, string endCssColor)
 {
     CutOff     = cutOff;
     StartColor = new ColorMapColor(startCssColor);
     BlendStyle = blendStyle;
     EndColor   = new ColorMapColor(endCssColor);
 }