[v.1.0.0] Release
See original GitHub issueFollowing up on #93. Some new features (as listed at https://frappe.github.io/charts) include:
- Mixed type axis datasets
- Stacked bar charts
- Value over data points
- Y Markers and regions
- Dot size, Bar space size, and other options
- Legend for axis charts
The X axis is static, unlike the scaled Y axis. We’ll incorporate time scaling soon 😃
API Change
Chart
options no longer incorporate the parent
, it is instead the first parameter passed in creation, options
being second:
const chart = new Chart("#chart", { // or a DOM element
title: "My Awesome Chart",
data: data,
type: 'bar',
height: 250,
colors: ['#7cd6fd', '#743ee2']
})
As this was a rewrite, I’ll be now looking to incorporate existing PRs and issues in the meantime.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:5
- Comments:8 (2 by maintainers)
Top Results From Across the Web
Semantic Versioning 1.0.0
Version 1.0.0 defines the public API. The way in which the version number is incremented after this release is dependent on this public...
Read more >Java Edition 1.0.0 - Minecraft Wiki - Fandom
1.0.0 (known as 1.0 in the launcher), the second release of the Adventure Update, and the first full version of the game, was...
Read more >Version 1.0.0 or 1.0.1? | Apple Developer Forums
Our application was submitted to Apple as version 1.0. 0 and approved for release. We however found an issue before releasing that caused...
Read more >What is the significance of reaching major version 1.0.0?
Semantic Version 1.0.0. just means that all future 1.x.x versions are backwards-compatible. You're free to go up by however many major version ...
Read more >Hands-On: eFootball Ver 1.0.0 is Konami's first step to ...
Finally, Version 1.0.0 is nearly here, with a release planned for April 14. This is the update that, Konami hopes, will slowly start...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Also the demo is out-of-date in terms of
datasets
shape, it takesname
now instead oflabel
.Could you put this into a
CHANGELOG
? I saw massive API changes, e.g. camelCase keys, consolidation into e.g.lineOptions
,axisOptions
,tooltipOptions
. A migration guide would be helpful, maybe I can help with that.