@Thilakbabu,
There is no option to show additional values on hover over of a bubble in chart. You can set the properties of DataLabels to show or not. Please see the following code for your reference.
Sample Code:
Workbook workbook = new Workbook("sample.xlsx");
Worksheet worksheet = workbook.getWorksheets().get(0);
Chart chart = worksheet.getCharts().get(0);
Series series = chart.getNSeries().get(0);
ChartPointCollection points= series.getPoints();
DataLabels label = series.getDataLabels();
label.setShowSeriesName(true);
label.setShowCategoryName(true); //Corresponding X value in the bubble chart
label.setShowValue(true); //Corresponding Y value in the bubble chart
label.setShowBubbleSize(true);
label.setShowLegendKey(true);
// or you can custom the DalaLabel for each ChartPoint
int pointCount = points.getCount();
for(int i = 0; i < pointCount; i++)
{
DataLabels pointLabel = points.get(i).getDataLabels();
pointLabel.setText("Additional text");
}
workbook.save("output.xlsx");