rawFormat ? applyDateFormat()

in powerbi-visual-builder/src_visual/visual.ts [167:177]


              rawFormat ? applyDateFormat(x as Date, rawFormat) : x.toString()
            ),
            highlights: powerBIColumn.values.map((value, i) => {
              return (powerBIColumn as DataViewValueColumn).highlights &&
                (powerBIColumn as DataViewValueColumn).highlights[i] != null &&
                value != null
                ? (powerBIColumn as DataViewValueColumn).highlights[
                    i
                  ].valueOf() <= value.valueOf()
                : false;
            })