Skip to content

Commit

Permalink
New features (#8)
Browse files Browse the repository at this point in the history
* New features
* Localization strings
* Switch to API 1.7
* Added displayNameKey to dataRoles
* Colors for categories
* Grouping legend items by category in several rows
* End color selection for gradient
* Legend of categories: improvements of displaying after cross filtering
* Code clean up
* Fix legend text size changes issue.
* Update chartutils package
  • Loading branch information
zBritva authored and ignatvilesov committed Aug 9, 2017
1 parent cd37c76 commit c117e1f
Show file tree
Hide file tree
Showing 19 changed files with 1,473 additions and 154 deletions.
204 changes: 201 additions & 3 deletions capabilities.json

Large diffs are not rendered by default.

17 changes: 16 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
## 1.9.0

* Add sorting of legend items by value
* Add sorting values of series in each category
* Add property to configure displaying of percent value in a scope of each category or all data
* Add property to rotate category labels to 45 degrees for displaying text without truncating
* Add property to force display the labels in case no enough space to display label

Features for a specific dataset.
The options available only when each value belongs to only one category

* Gradient color for each category
* Grouping legend items by category
* Sort legend each category items by value

## 1.8.1
* Fix for bug - X-axis label hided incorrectly
* Fix for bug - X-axis label hided incorrectly
34 changes: 19 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "powerbi-visuals-mekkochart",
"version": "1.8.1",
"version": "1.9.0",
"description": "A Mekko chart is a mix of a 100% stacked column chart and a 100% stacked bar chart combined into one view. Similar to a treemap, the dimensional values are represented by length and width of each rectangle. The width of a column is proportional to the total value of the column.",
"repository": {
"type": "git",
Expand All @@ -10,7 +10,7 @@
"powerbi-visuals"
],
"scripts": {
"postinstall": "typings install && pbiviz update 1.4.0",
"postinstall": "pbiviz update 1.6.0",
"typings": "typings",
"pbiviz": "pbiviz",
"start": "pbiviz start",
Expand All @@ -29,11 +29,16 @@
},
"homepage": "https://github.com/Microsoft/powerbi-visuals-mekkochart#readme",
"devDependencies": {
"@types/jquery": "2.0.41",
"@types/jasmine": "2.5.37",
"@types/d3": "3.5.36",
"@types/lodash": "4.14.50",
"@types/jasmine-jquery": "1.5.28",
"coveralls": "2.11.15",
"d3": "3.5.5",
"jasmine": "2.5.2",
"jasmine-jquery": "2.1.1",
"jquery": "3.1.1",
"jquery": "3.2.1",
"karma": "1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
Expand All @@ -42,17 +47,16 @@
"karma-sourcemap-loader": "0.3.7",
"karma-typescript-preprocessor": "0.3.0",
"lodash": "4.16.2",
"powerbi-visuals-tools": "1.4.3",
"powerbi-visuals-utils-chartutils": "0.3.0",
"powerbi-visuals-utils-colorutils": "0.2.1",
"powerbi-visuals-utils-dataviewutils": "1.0.1",
"powerbi-visuals-utils-formattingutils": "0.2.2",
"powerbi-visuals-utils-interactivityutils": "0.2.1",
"powerbi-visuals-utils-svgutils": "0.2.1",
"powerbi-visuals-utils-testutils": "0.2.2",
"powerbi-visuals-utils-tooltiputils": "0.3.0",
"powerbi-visuals-utils-typeutils": "0.2.1",
"tslint": "4.0.2",
"typings": "2.0.0"
"powerbi-visuals-tools": "1.7.1",
"powerbi-visuals-utils-colorutils": "1.0.0",
"powerbi-visuals-utils-dataviewutils": "1.1.1",
"powerbi-visuals-utils-chartutils": "1.4.1",
"powerbi-visuals-utils-formattingutils": "2.1.0",
"powerbi-visuals-utils-interactivityutils": "1.0.0",
"powerbi-visuals-utils-svgutils": "1.1.0",
"powerbi-visuals-utils-testutils": "1.0.1",
"powerbi-visuals-utils-tooltiputils": "1.0.0",
"powerbi-visuals-utils-typeutils": "1.1.0",
"tslint": "4.0.2"
}
}
6 changes: 3 additions & 3 deletions pbiviz.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"visual": {
"name": "MekkoChart",
"displayName": "Mekko Chart",
"displayName": "Mekko Chart 1.9.0",
"guid": "MekkoChart1449744733038",
"visualClassName": "MekkoChart",
"version": "1.8.1",
"version": "1.9.0",
"description": "A Mekko chart is a mix of a 100% stacked column chart and a 100% stacked bar chart combined into one view. Similar to a treemap, the dimensional values are represented by length and width of each rectangle. The width of a column is proportional to the total value of the column.",
"supportUrl": "http://community.powerbi.com",
"gitHubUrl": "https://github.com/Microsoft/powerbi-visuals-mekkochart"
},
"apiVersion": "1.4.0",
"apiVersion": "1.6.0",
"author": {
"name": "Microsoft",
"email": "[email protected]"
Expand Down
Loading

0 comments on commit c117e1f

Please sign in to comment.