React Bubble charts are like scatter chart, but allows you to visualize data in 3 dimensions. The size of the bubble is determined based on the third parameter.
Appearance of each data point in a bubble chart can be customized using point render event to differentiate each point based on the size.
Shows details about the data points with the help of data label support.
import {AxisModel, BubbleSeries, ChartComponent, Inject, SeriesCollectionDirective, SeriesDirective} from'@syncfusion/ej2-react-charts';
import * as React from 'react';
class App extends React.Component<{}, {}> {
public primaryXAxis: AxisModel = { };
public data1 : any[]= [
{ x: 1, y: 45, text: 'USA', fill: '#00226C', size: 1.347 },
{ x: 2, y: 20, text: 'AUS', fill: '#0450C2', size: 1 },
{ x: 3, y: 56, text: 'CHN', fill: '#0073DC', size: 0.01 },
{ x: 4, y: 30, text: 'IND', fill: '#0D98FF', size: 0.7 },
{ x: 5, y: 13, text: 'JPN', fill: '#9CD9FF', size: 0.333 },
{ x: 6, y: 45, text: 'UK', fill: '#0450C2', size: 1 }
];
public render() {
return <ChartComponent id='charts' primaryXAxis={this.primaryxAxis}>
<Inject services={[BubbleSeries]} />
<SeriesCollectionDirective>
<SeriesDirective dataSource={this.data1} xName='x' yName='y' type='Bubble'/>
</SeriesCollectionDirective>
</ChartComponent>
}
};
ReactDOM.render(
<App />,
document.getElementById('charts') as HTMLElement
);
<!DOCTYPE html>
<html>
<body>
<div id="charts"></div>
</body>
</html>
[Bubble Chart User Guide](https://ej2.syncfusion.com/documentation/chart/chart-types.html?lang=typescript#scatter-charts
Learn the available options to customize React bubble chart.