Hi Yogesh,
Greetings from Syncfusion.
We can hide the chart title by using the workaround in the
chart's loaded event. To hide the chart title that appears when we hover over
the chart, we can set the title attribute to an empty string. To demonstrate
this, we created a react application. Please see the stackblitz link below for
your convenience.
Sample link: https://stackblitz.com/edit/react-ikjs5h?file=index.js
Code Snippet:
<ChartComponent loaded={loaded.bind(this)}></ChartComponent>
function loaded(args) {
let chart =
document.getElementById('charts');
chart.setAttribute('title', '');
}
;
|
Screenshot:

Kindly, revert us if you have any concerns.
Regards,
Swetha