我正在制作一个图表,必须缩放并显示每个数据点的工具提示。在Victory的文档中有一个multi-line chart with tooltips但是如果您调整数据集,工具提示会重叠。我发现VictoryPortal是一种克服这种情况的机制,但似乎即使在链接的例子中,它也在使用VictoryPortal。 (工具提示的道具有renderInPortal: true,
)
为了解决这个问题,我在Lines / Scatters之后创建了第二个VictoryGroup,它只是将所有的数据集组合在一起并给了它们opacity: 0
所以它看起来就像你在原始的Scatter点上空盘旋一样。这种方法有效,但感觉必须有一个更好,更清洁的方式,我在这里失踪。我无法弄清楚如何使用Victory创建一个代码段,所以这里是有问题的代码:
在一个组中为各个数据集渲染线条/散点图的方法:
renderLine = (m, i) => (
this.state.s[i]
? <VictoryGroup
key={i}
color={m.color}
data={m.data}
labels={(d) => `y: ${d.y}\nx: ${d.x}`}
labelComponent={
<VictoryTooltip
cornerRadius={0}
style={{ fontSize: 10 }}
/>}
>
<VictoryLine />
<VictoryScatter size={(d, a) => a ? 8 : 3} />
</VictoryGroup>
: null
)
我的渲染方法:
render() {
const { renderLine } = this
return (
<div style={{ width: '50vw', margin: '0 auto' }}>
<VictoryChart
height={400}
width={400}
padding={30}
containerComponent={<VictoryZoomContainer />}>
<VictoryAxis
domain={{ x: [-180, 180] }}
standalone
label={'Angle (°)'}
style={axisStyle}
crossAxis={false}
orientation={'bottom'}
axisLabelComponent={
<VictoryLabel orientation={'top'} y={'97%'} verticalAnchor={'end'} />
}
gridComponent={
<Line
style={{
...axisStyle.grid,
transform: 'translate3d(0,100%,0)'
}}
/>
}
tickCount={12}
tickLabelComponent={<VictoryLabel dy={-5} />}
/>
<VictoryAxis
dependentAxis
orientation={'left'}
label={'Discriminiation (dB)'}
axisLabelComponent={
<VictoryLabel orientation={'left'} x={15} />
}
standalone
offsetX={30}
style={axisStyle}
/>
{masterData.map((d, i) => renderLine(d, i))}
<VictoryGroup
color={'rgba(0,0,0,0)'}
data={[...dataSet, ...dataSet2, ...dataSet3, ...dataSet4]}
labels={(d) => `y: ${d.y}\nx: ${d.x}`}
labelComponent={
<VictoryTooltip
cornerRadius={0}
style={{ fontSize: 10 }}
/>}
>
<VictoryScatter size={(d, a) => a ? 8 : 3} />
</VictoryGroup>
</VictoryChart>
</div>
);
}
非常感谢任何意见或建议。提前谢谢!
答案 0 :(得分:0)
我从类似的解决方案开始,但最后我使用VoronoiContainer组件并使用工具提示获得了一些成功的结果。
https://formidable.com/open-source/victory/docs/victory-voronoi-container/
您必须在VictoryChart中将VoronoiContainer作为containerComponent。
使用该方法,VictoryScatter是不必要的。