Skip to content

Commit

Permalink
Version 4.0.0-beta.73
Browse files Browse the repository at this point in the history
  • Loading branch information
martynasma committed Nov 7, 2018
1 parent aa37ef9 commit 7feede2
Show file tree
Hide file tree
Showing 163 changed files with 615 additions and 233 deletions.
Binary file not shown.
22 changes: 22 additions & 0 deletions dist/ember/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
Please note, that this project, while following numbering syntax, it DOES NOT
adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) rules.

## [4.0.0-beta.73] - 2018-11-07

### Changed
- `axisFills.template.interactionsEnabled` is now set to `false` by default. If you need to attach events on an axis fill, you will need to set it to `true`.

### Added
- `autoDispose` property added to `Series` and `Axis` classes with default value `true`. This means that series/axis will be automatically disposed when removed from chart's `series`, `xAxes`, or `yAxes` lists.
- It is now possible to have 3D stacked columns (by setting `clustered = false` on series).

### Fixed
- If chart container was moved in DOM tree, it stopped sensing resize and was not updating its size anymore.
- Sometimes `ValueAxis` could show zero label with a minus sign.
- Arrows on `MapLine` were not drawn.
- It was not possible to change the text color of the tooltip on `TreeMap` diagram.
- `axis.tooltipPosition = "pointer"` was not working as it should - always follow the mouse/pointer.
- If series had `data` set directly, it was still using chart's global `data`, resulting in combined datasets and potentially visual anomalies.
- Setting `cellStartLocation` did not have any effect on an already inited chart.
- Line series could be cut off in the beginning (when zoomed-in closely).
- Vertical axis ticks were not being positioned properly if axis had a title.
- 3D columns were not using chart's `depth`/`angle`.


## [4.0.0-beta.72] - 2018-11-03

### Changed
Expand Down
2 changes: 1 addition & 1 deletion dist/ember/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@amcharts/amcharts4-ember",
"version": "4.0.0-beta.72",
"version": "4.0.0-beta.73",
"description": "Ember add-on for AmCharts V4",
"keywords": [
"ember-addon",
Expand Down
22 changes: 22 additions & 0 deletions dist/ember/vendor/script/amcharts4/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
Please note, that this project, while following numbering syntax, it DOES NOT
adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) rules.

## [4.0.0-beta.73] - 2018-11-07

### Changed
- `axisFills.template.interactionsEnabled` is now set to `false` by default. If you need to attach events on an axis fill, you will need to set it to `true`.

### Added
- `autoDispose` property added to `Series` and `Axis` classes with default value `true`. This means that series/axis will be automatically disposed when removed from chart's `series`, `xAxes`, or `yAxes` lists.
- It is now possible to have 3D stacked columns (by setting `clustered = false` on series).

### Fixed
- If chart container was moved in DOM tree, it stopped sensing resize and was not updating its size anymore.
- Sometimes `ValueAxis` could show zero label with a minus sign.
- Arrows on `MapLine` were not drawn.
- It was not possible to change the text color of the tooltip on `TreeMap` diagram.
- `axis.tooltipPosition = "pointer"` was not working as it should - always follow the mouse/pointer.
- If series had `data` set directly, it was still using chart's global `data`, resulting in combined datasets and potentially visual anomalies.
- Setting `cellStartLocation` did not have any effect on an already inited chart.
- Line series could be cut off in the beginning (when zoomed-in closely).
- Vertical axis ticks were not being positioned properly if axis had a title.
- 3D columns were not using chart's `depth`/`angle`.


## [4.0.0-beta.72] - 2018-11-03

### Changed
Expand Down
2 changes: 1 addition & 1 deletion dist/ember/vendor/script/amcharts4/charts.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ember/vendor/script/amcharts4/charts.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ember/vendor/script/amcharts4/core.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ember/vendor/script/amcharts4/core.js.map

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ categoryAxisRenderer.ticks.template.disabled = true;
categoryAxisRenderer.axisFills.template.fill = am4core.color("#e8e8e8");
categoryAxisRenderer.axisFills.template.fillOpacity = 0.2;
categoryAxisRenderer.axisFills.template.location = -0.5;
categoryAxisRenderer.axisFills.template.disabled = false;
categoryAxisRenderer.line.disabled = true;
categoryAxisRenderer.tooltip.disabled = true;
categoryAxis.renderer.labels.template.disabled = true;
Expand Down
2 changes: 1 addition & 1 deletion dist/ember/vendor/script/amcharts4/maps.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ember/vendor/script/amcharts4/maps.js.map

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions dist/ember/vendor/script/amcharts4/stock/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
Please note, that this project, while following numbering syntax, it DOES NOT
adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) rules.

## [4.0.0-beta.73] - 2018-11-07

### Changed
- `axisFills.template.interactionsEnabled` is now set to `false` by default. If you need to attach events on an axis fill, you will need to set it to `true`.

### Added
- `autoDispose` property added to `Series` and `Axis` classes with default value `true`. This means that series/axis will be automatically disposed when removed from chart's `series`, `xAxes`, or `yAxes` lists.
- It is now possible to have 3D stacked columns (by setting `clustered = false` on series).

### Fixed
- If chart container was moved in DOM tree, it stopped sensing resize and was not updating its size anymore.
- Sometimes `ValueAxis` could show zero label with a minus sign.
- Arrows on `MapLine` were not drawn.
- It was not possible to change the text color of the tooltip on `TreeMap` diagram.
- `axis.tooltipPosition = "pointer"` was not working as it should - always follow the mouse/pointer.
- If series had `data` set directly, it was still using chart's global `data`, resulting in combined datasets and potentially visual anomalies.
- Setting `cellStartLocation` did not have any effect on an already inited chart.
- Line series could be cut off in the beginning (when zoomed-in closely).
- Vertical axis ticks were not being positioned properly if axis had a title.
- 3D columns were not using chart's `depth`/`angle`.


## [4.0.0-beta.72] - 2018-11-03

### Changed
Expand Down
2 changes: 1 addition & 1 deletion dist/ember/vendor/script/amcharts4/stock/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"tslib": "^1.9.3"
},
"peerDependencies": {
"@amcharts/amcharts4": "^4.0.0-beta.72"
"@amcharts/amcharts4": "^4.0.0-beta.73"
},
"keywords": [
"amcharts",
Expand Down
10 changes: 10 additions & 0 deletions dist/es2015/.internal/charts/axes/Axis.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,11 @@ export declare class Axis<T extends AxisRenderer = AxisRenderer> extends Compone
* Ghost label is used to prevent chart shrinking/expanding when zooming or when data is invalidated. You can set custom text on it so that it would be bigger/smaller
*/
ghostLabel: AxisLabel;
/**
* Specifies if axis should be automatically disposed when removing from chart's axis list.
* @default true
*/
autoDispose: boolean;
/**
* Constructor
*/
Expand All @@ -474,6 +479,11 @@ export declare class Axis<T extends AxisRenderer = AxisRenderer> extends Compone
* @ignore Exclude from docs
*/
invalidateLayout(): void;
/**
* Invalidates series of this axis.
*
*/
invalidateSeries(): void;
/**
* Override to cancel super call for data element validation.
* @ignore
Expand Down
24 changes: 23 additions & 1 deletion dist/es2015/.internal/charts/axes/Axis.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/es2015/.internal/charts/axes/Axis.js.map

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions dist/es2015/.internal/charts/axes/AxisFill.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ export declare class AxisFill extends Sprite {
* @param {Axis} axis Axis
*/
constructor(axis: Axis);
/**
* @ignore
*/
protected setDisabled(value: boolean): void;
/**
* Draws the fill element.
*
Expand Down
9 changes: 9 additions & 0 deletions dist/es2015/.internal/charts/axes/AxisFill.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7feede2

Please sign in to comment.