Legend with Class Break Renderer normalization

534
0
02-06-2018 07:21 AM
DavidTreering2
New Contributor III

Building on the setRenderer error getFieldsUsedInExpressions is not a function question, I built a ClassBreakRenderer widget that has a classification field and a normalization field, plus a legend.  Normalization works with attributes from the feature class.

Class Break Renderer widget

I'm trying to build in a NULL value to the normalization field so that it can be set to null by default, leaving just the classification to set the map symbology.  

var noSelect = {
   value: null,
   label: "none"
};

I push this to an array that holds the field values, then loop through the field values to add to the array.

var normFields = []; //normalization fields
normFields.push(noSelect); //add NULL value
arrayUtils.forEach(resp.fields,function(f){
   foption = {
      value: f.name,
      label: f.alias
   };

   normFields.push(foption);

The values are in the selection dropdown, but the null value does not work as expected. The previous value is retained as the normalization field. See attached code, and thank you immensely for your time.

0 Kudos
0 Replies