Skip to content

Releases: AdrianAntico/QuickEcharts

V2.1.2

23 Nov 20:03

Choose a tag to compare

License change to MIT, and change PreAgg default to True, new logo,

V2.1.0

12 Jan 21:33

Choose a tag to compare

Fixed x-axis label ordering issue

Enabled theme to apply when TimeLine = True

Minor updates to app

Add light / dark mode to app

11 Jan 20:13

Choose a tag to compare

Added light / dark mode to app

V2.0.0

10 Jan 03:33

Choose a tag to compare

Lots of updates. App included in this release. See README for how to run it.

V1.2.0

04 Jan 21:39

Choose a tag to compare

Refactored code and modified the Area() function so that there is only one GradientColors parameters where the user should pass a list of hex colors. They can now supply as many colors as they'd like

Minor patch

05 Jul 22:51

Choose a tag to compare

  • Bug fix for Copula3D
  • Removed dt parameter from Funnel() since no data gets passed into that plot function
  • Added unit tests
  • Updated yml workflow to run tests

Update Variable Transformation Handling

23 May 16:27

Choose a tag to compare

QuickEcharts 1.1.0

For plots that allow for more than one YVar, you can now selectively choose which variables you'd like transformed and which ones to leave alone. Here is how it works:

Example with multiple YVars and a partial list of transformations
  1. Define YVar: YVar = ['Daily Liters', 'Daily Units', 'Daily Revenue']
  2. Define YVarTrans: YVarTrans = [None, None, 'logmin']

In the example above, only Daily Revenue will be transformed while Daily Liters and Daily Units will be left alone. Order matters for the list of transformations: they need to match the order of the YVar's. Supply the value None for variables you want to leave alone.