Skip to content

Commit

Permalink
Add: support for category type y axis.
Browse files Browse the repository at this point in the history
  • Loading branch information
arikfr committed Aug 6, 2017
1 parent f809514 commit 68e3fe6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
- Add link to query page from admin view. @miketheman
- Add the option to write logs to STDOUT instead of STDERR. @eyalzek
- Add limit parameter to tasks API. @alexpekurovsky
- Support for category type y axis.

### Changed

Expand Down
2 changes: 1 addition & 1 deletion client/app/visualizations/chart/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function ChartEditor(ColorPalette, clientConfig) {
}

scope.xAxisScales = ['datetime', 'linear', 'logarithmic', 'category'];
scope.yAxisScales = ['linear', 'logarithmic', 'datetime'];
scope.yAxisScales = ['linear', 'logarithmic', 'datetime', 'category'];

scope.chartTypeChanged = () => {
keys(scope.options.seriesOptions).forEach((key) => {
Expand Down

0 comments on commit 68e3fe6

Please sign in to comment.