format

allows to set the required format for Gage values

function format;

Example

webix.ui{
  view:"gage",
  format: value => Math.round(value /1000),
  ...
});

Back to top