Skip to content

Releases: jamestthompson3/viiksetjs

1

22 Dec 12:08
Compare
Choose a tag to compare

Move data prep off the main loop

0.0.24

26 Sep 19:00
Compare
Choose a tag to compare

Fixes issues with inverted scales on BarCharts.

0.0.23

21 Sep 11:49
Compare
Choose a tag to compare

Makes bundle smaller and fixes issues related to Biaxial Bar Charts.

0.0.18

28 Aug 09:31
Compare
Choose a tag to compare

Fixes issues with gradient creation, adds DataContext component for more flexibility in rending components according to your data.

0.0.16

21 Aug 12:30
Compare
Choose a tag to compare

Adds the glyphRenderer prop for rendering a glyph or series of glyphs with a z-index above all other chart elements.

0.0.15

17 Aug 12:20
Compare
Choose a tag to compare

Formats README better, fixes issue related to horizontal bar charts

0.0.14

10 Aug 14:15
Compare
Choose a tag to compare

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

08 Aug 07:11
Compare
Choose a tag to compare

Improves overall stability and flexibility of ChartArea, PieChart, and ScatterPlot. Fixes bugs related to scaling and styles.