Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [18.x, 20.x]
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## 3.1.0.0

### New features
* Add font setting for data labels
* Add font setting for legend
* Add font setting for x-axis
* Add font setting for y-axis
* Add onObject formatting for settings

### Other
* API 5.11.0
* Update dependencies

## 3.0.9.0
* Bump version

Expand Down
106 changes: 103 additions & 3 deletions capabilities.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"supportsKeyboardFocus": true,
"supportsMultiVisualSelection": true,
"supportsOnObjectFormatting": true,
"enablePointerEventsFormatMode": true,
"supportsHighlight": true,
"privileges": [],
"dataRoles": [
{
Expand All @@ -19,7 +22,7 @@
"name": "Y",
"kind": "Measure",
"displayName": "Values",
"displayNameKey": "Role_DisplayName_Values"
"displayNameKey": "Visual_Values"
}
],
"dataViewMappings": [
Expand Down Expand Up @@ -153,6 +156,33 @@
}
}
}
},
"titleFontSize": {
"type": {
"integer": true
}
},
"titleFontFamily": {
"type": {
"formatting": {
"fontFamily": true
}
}
},
"titleFontBold": {
"type": {
"bool": true
}
},
"titleFontUnderline": {
"type": {
"bool": true
}
},
"titleFontItalic": {
"type": {
"bool": true
}
}
}
},
Expand Down Expand Up @@ -219,6 +249,33 @@
}
}
}
},
"titleFontSize": {
"type": {
"integer": true
}
},
"titleFontFamily": {
"type": {
"formatting": {
"fontFamily": true
}
}
},
"titleFontBold": {
"type": {
"bool": true
}
},
"titleFontUnderline": {
"type": {
"bool": true
}
},
"titleFontItalic": {
"type": {
"bool": true
}
}
}
},
Expand Down Expand Up @@ -259,6 +316,28 @@
"type": {
"integer": true
}
},
"labelFontFamily": {
"type": {
"formatting": {
"fontFamily": true
}
}
},
"labelFontBold": {
"type": {
"bool": true
}
},
"labelFontUnderline": {
"type": {
"bool": true
}
},
"labelFontItalic": {
"type": {
"bool": true
}
}
}
},
Expand Down Expand Up @@ -287,6 +366,28 @@
"type": {
"integer": true
}
},
"labelFontFamily": {
"type": {
"formatting": {
"fontFamily": true
}
}
},
"labelFontBold": {
"type": {
"bool": true
}
},
"labelFontUnderline": {
"type": {
"bool": true
}
},
"labelFontItalic": {
"type": {
"bool": true
}
}
}
},
Expand All @@ -304,6 +405,5 @@
}
}
}
},
"supportsHighlight": true
}
}
Loading
Loading