# Category Scale + minRange

const config = {
  type: 'bar',
  data: data,
  options: {
    scales: scales,
    plugins: {
      zoom: {
        pan: {
          enabled: true,
          mode: 'x',
          threshold: 5,
        },
        zoom: {
          wheel: {
            enabled: true
          },
          pinch: {
            enabled: true
          },
          mode: 'x',
        },
        limits: {
          x: {
            minRange: 4
          }
        }
      },
    },
  }
};
Last Updated: 11/26/2024, 6:21:18 AM