始终反应本机胜利图表显示工具提示

时间:2021-02-28 23:38:18

标签: javascript react-native victory-charts

我的胜利图表工作正常,但需要工具提示不仅在触摸时始终显示...

<VictoryChart
  height={200}
  animate={{ duration: 500 }}
  // domain={{  y: [400000, 498542.15] }}
  containerComponent={
    <VictoryVoronoiContainer
      labels={() => "placeHolder"}
      labelComponent={
        <VictoryTooltip
          style={{ fontSize: "15px", fill: BRAND_COLORS.white }}
          cornerRadius={15}
          pointerLength={10}
          active={true}
          flyoutStyle={{
            stroke: BRAND_COLORS.transparent,
            fill: "red",
          }}
          text={"$345,000.34"}
        />
      }
    />
  }
/>

0 个答案:

没有答案