我正试图关闭Tooltip出现在高脚椅上。如果我在图表内的任何地方单击,它将关闭,但是,如果我尝试在图表区域之外单击,则工具提示不会关闭。如何在本机反应中解决?
我尝试使用该功能,但是我不确定这将是最好的方法
<LineChart style={[styles.fullWidth, { height: 300, border: 0 }]}
yAxisTitle={I18n.t("averageSalePricePerSq")}
xAxisValue={quarterlySales} orientation="horizontal"
data={sales}
config={{ tooltip: { enabled: true, shared: true, pointFormat:
<span style="color:{point.series.color}">●</span> {point.series.name}: <b>{point.y} AED/sq ft</b><br />`, }, }} />