render()

in modules/multi-way-plot/src/multi-way-plot.js [94:105]


  render() {
    const {width, height, data, isThumbnail} = this.props;
    if (width <= 0 || height <= 0 || !data) {
      return null;
    }
    return (
      <svg width={width} height={height} {...FONT_STYLE} pointerEvents="none">
        {this._renderMultiWayGroup()}
        {!isThumbnail && this._renderAxis()}
      </svg>
    );
  }