updateY()

in packages/showcase/plot/hexbin-size-example.js [51:55]


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