updateX()

in packages/showcase/plot/hexbin-size-example.js [45:49]


  updateX(increment) {
    this.setState({
      xAxis: (this.state.xAxis + (increment ? 1 : -1)) % DIMENSIONS.length
    });
  }