You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had tried to create my custom component for the tooltips but not able to give position on the custom tooltips box it's take fixed position so please give me suggestion for that how can i set my tooltips on my chart data point
The text was updated successfully, but these errors were encountered:
tooltipComponent={
<Tooltip
value={chartData}
position={{x: 10, y: 5}}
theme={{
label: {fontSize: 12},
shape: {width: 50,height:50},
formatter(value) {
return (
{value.y}
);
// return
${Number(value.y).toFixed(2)}
;},
}}
/>
}
I had tried to create my custom component for the tooltips but not able to give position on the custom tooltips box it's take fixed position so please give me suggestion for that how can i set my tooltips on my chart data point
The text was updated successfully, but these errors were encountered: