-
Notifications
You must be signed in to change notification settings - Fork 26
/
CHANGELOG
65 lines (54 loc) · 1.9 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Changelog
## Unreleased
### Added
- Show markers in the line/scatter plots legend.
- Added the following point markers Plus, Star, Triangle, TriangleDown, Diamond.
### Fixed
- Replace failure dependency with thiserror (Issue #63
## 0.5.1 - 2020-03-28
### Fixed
- Set default axis bounds for case where all values are equal (Issue #36)
- Optimise tick generation to jump straight to range (Issue #42)
- Fix text rendering of scatter plots
## 0.5.0 - 2020-03-14
### Added
- Legends for line plots
### Changed
- Remove style traits and replace all style structs with 3 common ones in `style`
- Group all representations under a `repr` module.
- Add `linejoin` option to line style.
- More Box and less & in the interface
- Replace Line, Scatter and Function with Plot
## 0.4.0 - 2019-03-02
### Added
- Line charts.
- Box plots.
- Bar charts.
- Introduce categorical representation, views and axes.
- Add ability to set dimensions of plot (PR #8)
- Added ability to display a histogram as densities
- Add ability to display grids (PR #23)
### Changed
- Change `create_axes`, `save`, `to_svg` and `to_text` to return `Result` indicating an error.
- Make `representation` module public.
- Rename `Scatter::from_vec` to `Scatter::from_slice`.
- Rename `Histogram::from_vec` to `Histogram::from_slice`.
- Rename `view::View` to `view::ContinuousView` and introduce `view::View` as a trait.
- Change `svg_render` functions to take data slices rather than Representations.
- `Histogram::from_slice` now takes either a bin count or a bin bound list as its second argument.
## 0.3.0 - 2018-03-01
### Added
- Axis labels
- Function plotting
- Histogram styling
### Changed
- Rename `plot::Plot` to `page::Page`
- Move `scatter::Marker` to `style::Marker`
## 0.2.0 - 2017-03-16
### Added
- SVG rendering
### Changed
- Reorganise things to use traits for plot types
## 0.1.0 - 2017-03-09
### Added
- Initial release with histograms and scatter plots