How to modify the tickFormat for X axis of a histogram?

Hi Team,

in order to localize the UI, how can we change the tickFormat for X axis of a histogram ?

where i found the code snippets as following:

in HistogramVisualization.jsx:

    this.histogram.xAxis()
      .ticks(graphHelper.customTickInterval())
      .tickFormat(graphHelper.customDateTimeFormat());

in graphHelper.js:

  customDateTimeFormat(tzOffset) {
    if (typeof tzOffset === 'undefined') {
      tzOffset = null;
    }
    return (date) => {
      let momentDate;
      let formattedDate;

      if (tzOffset === null) {
        momentDate = new DateTime(date).toMoment();
      } else {
        momentDate = moment(date);
        momentDate.utcOffset(tzOffset);
      }

      this.dateTimeFormats.some((format) => {
        if (format.condition(momentDate) === true) {
          formattedDate = momentDate.format(format.formatString);
          return true;
        }
      });

      return formattedDate;
    };
  },

Thanks
charles

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.