Releases: AdrianAntico/QuickEcharts
V2.1.2
V2.1.0
Fixed x-axis label ordering issue
Enabled theme to apply when TimeLine = True
Minor updates to app
Add light / dark mode to app
Added light / dark mode to app
V2.0.0
Lots of updates. App included in this release. See README for how to run it.
V1.2.0
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
- 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
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
- Define YVar: YVar = ['Daily Liters', 'Daily Units', 'Daily Revenue']
- 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.