Skip to content

Commit

Permalink
ColorPicker: Fixed issue with spectrum picker (#251)
Browse files Browse the repository at this point in the history
Co-authored-by: Torkel Ödegaard <[email protected]>
Co-authored-by: Torkel Ödegaard <[email protected]>
  • Loading branch information
3 people authored Sep 16, 2020
1 parent 7dfce79 commit 9cc257f
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 24 deletions.
47 changes: 25 additions & 22 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# Change Log

## [1.6.1] - 2020-09-14

- Fixed issue with legend color picker [#248](https://github.com/grafana/piechart-panel/issues/248)

## [1.5.0] - 2020-05-15

- Updated logo
- Sanitize legend header. Thanks rotemreiss [#230](https://github.com/grafana/piechart-panel/pull/230)
- Signed for Grafana 7.0


## [1.4.0] - 2020-02-04

- Added combine option for legend
Expand All @@ -18,47 +20,48 @@

## [1.3.8] - 2019-07-22

* Added hotfix for older versions of grafana
- Added hotfix for older versions of grafana

## [1.3.7] - 2019-07-22

* Converted to typescript.
* Fixed several bugs.
* Fixed 6.3 compatibility.
* Used toolkit for building.
* Fixed for issue #154.
- Converted to typescript.
- Fixed several bugs.
- Fixed 6.3 compatibility.
- Used toolkit for building.
- Fixed for issue #154.

## 1.3.3

* Fixed legend sorting: [#145](https://github.com/grafana/piechart-panel/issues/145)
- Fixed legend sorting: [#145](https://github.com/grafana/piechart-panel/issues/145)

## 1.3.2

* Automatically set legend width if Internet Explorer 11 and positioned to the right: [#148](https://github.com/grafana/piechart-panel/issues/148)
- Automatically set legend width if Internet Explorer 11 and positioned to the right: [#148](https://github.com/grafana/piechart-panel/issues/148)

## 1.3.1

* Fixed scrolling and legend issues in Internet Explorer 11: [#143](https://github.com/grafana/piechart-panel/issues/143)
- Fixed scrolling and legend issues in Internet Explorer 11: [#143](https://github.com/grafana/piechart-panel/issues/143)

## 1.3.0

* Fixed legend and piechart rendering and sorting: [#138](https://github.com/grafana/piechart-panel/pull/138), [#136](https://github.com/grafana/piechart-panel/pull/136)
* Fixed decimal field for percentages [#108](https://github.com/grafana/piechart-panel/pull/108)
- Fixed legend and piechart rendering and sorting: [#138](https://github.com/grafana/piechart-panel/pull/138), [#136](https://github.com/grafana/piechart-panel/pull/136)
- Fixed decimal field for percentages [#108](https://github.com/grafana/piechart-panel/pull/108)

## 1.1.5

* Fixed color picker in legend
* Fixed - [Values in legend are displayed raw, not with the correct unit](https://github.com/grafana/piechart-panel/issues/51). Thanks, [@conet](https://github.com/conet)
* Fixed - [Legend overlaps with graphs](https://github.com/grafana/piechart-panel/issues/34). Thanks, [@smalik03](https://github.com/smalik03)
- Fixed color picker in legend
- Fixed - [Values in legend are displayed raw, not with the correct unit](https://github.com/grafana/piechart-panel/issues/51). Thanks, [@conet](https://github.com/conet)
- Fixed - [Legend overlaps with graphs](https://github.com/grafana/piechart-panel/issues/34). Thanks, [@smalik03](https://github.com/smalik03)

## 1.1.4
* Added support for combining small slices (https://github.com/grafana/piechart-panel/pull/43)
* Added option to show percentage in legend https://github.com/grafana/piechart-panel/pull/41

- Added support for combining small slices (https://github.com/grafana/piechart-panel/pull/43)
- Added option to show percentage in legend https://github.com/grafana/piechart-panel/pull/41

## 1.0.2

* Added piechart piece divider setting
* Removed unused code
* Added fontsize option for labels on graph
* Only show the displayed piechart value in legend
* Added possibility to pick stat to use for piechart
- Added piechart piece divider setting
- Removed unused code
- Added fontsize option for labels on graph
- Only show the displayed piechart value in legend
- Added possibility to pick stat to use for piechart
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "piechart-panel",
"version": "1.6.0",
"version": "1.6.1",
"description": "Pie chart panel for Grafana",
"scripts": {
"build": "grafana-toolkit plugin:build",
Expand Down
2 changes: 1 addition & 1 deletion src/legend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ angular.module('grafana.directives').directive('piechartLegend', (popoverSrv: an
element: el[0],
position: 'right center',
template:
'<series-color-picker-popover series="series" onToggleAxis="toggleAxis" onColorChange="colorSelected">' +
'<series-color-picker-popover color="series.color" onToggleAxis="toggleAxis" onColorChange="colorSelected">' +
'</series-color-picker-popover>',
openOn: 'hover',
classNames: 'drop-popover drop-popover--transparent',
Expand Down

0 comments on commit 9cc257f

Please sign in to comment.