I've gotten a statistics table with cell column color formats changing depending on a value, such as: 
      <format type="color" field="Tolerance">
      <colorPalette type="list">[#D93F3C,#FFFFFF,#FFFFFF]</colorPalette>
      <scale type="threshold">99,100</scale>
    </format>
  
 but I would like to provide the ability for the user to enter the cut-off value using an edit text field and token, such that the user can set the range tolerance, like: 
      <format type="color" field="Tolerance">
      <colorPalette type="list">[#D93F3C,#FFFFFF,#FFFFFF]</colorPalette>
      <scale type="threshold">$tolerance_range_break_value$,100</scale>
    </format>
  
 but the dashboard does not appear to accept tokens at this point in the source.  Is there a better way to achieve a variable range value for the format color? 
						
					
					... View more