Releases: jamestthompson3/viiksetjs
Releases · jamestthompson3/viiksetjs
1
0.0.24
Fixes issues with inverted scales on BarCharts.
0.0.23
Makes bundle smaller and fixes issues related to Biaxial Bar Charts.
0.0.18
Fixes issues with gradient creation, adds DataContext
component for more flexibility in rending components according to your data.
0.0.16
Adds the glyphRenderer
prop for rendering a glyph or series of glyphs with a z-index above all other chart elements.
0.0.15
Formats README better, fixes issue related to horizontal bar charts
0.0.14
Implements recursive cloning of children to facilitate things like this:
<ChartArea data={chartData}>
chartData &&
Object.keys(chartData[0]).map(
key=>
key !== 'time' && (
<React.Fragment key={key}>
<LineChart dataKey={key} color={chartColors[key]} />
<ScatterPlot
dataKey={key}
stroke={chartColors[key]}
color="tooltipColor"
radius={3}
opacity={1}
/>
</React.Fragment>
)
)}
</ChartArea>
Where the ScatterPlot
and LineChart
components would still inherit the necessary props from the ChartArea
component
0.0.13
Improves overall stability and flexibility of ChartArea, PieChart, and ScatterPlot. Fixes bugs related to scaling and styles.