{ this.renderIntervalSelector() }
}
title={ __( 'Line chart', 'woocommerce-admin' ) }
aria-checked={ query.chartType === 'line' }
role="menuitemradio"
tabIndex={ query.chartType === 'line' ? 0 : -1 }
onClick={ this.handleTypeToggle( 'line' ) }
/>
}
title={ __( 'Bar chart', 'woocommerce-admin' ) }
aria-checked={ query.chartType === 'bar' }
role="menuitemradio"
tabIndex={ query.chartType === 'bar' ? 0 : -1 }
onClick={ this.handleTypeToggle( 'bar' ) }
/>
{ uniqCharts.map( chart => {
return hiddenChartKeys.includes( chart.key ) ? null : (
);
} ) }