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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@

## 3.3.0.0

### New features
* Tooltip bucket - now shows only Tooltip bucket fields when populated; default tooltip rows are shown only when Tooltip bucket is empty
* Tooltip values now resolve per hovered stream point (series + category index)

### Tests
* Added tooltip-focused test cases covering default tooltip fallback, explicit Tooltip bucket output


## 3.2.0.0

### New features
Expand Down
41 changes: 38 additions & 3 deletions capabilities.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
"kind": "Measure",
"displayName": "Values",
"displayNameKey": "Visual_Values"
},
{
"name": "Tooltips",
"kind": "GroupingOrMeasure",
"displayName": "Tooltips",
"displayNameKey": "Visual_Tooltips"
}
],
"dataViewMappings": [
Expand All @@ -31,6 +37,9 @@
},
"Series": {
"max": 0
},
"Tooltips": {
"max": 5
}
},
{
Expand All @@ -43,14 +52,26 @@
},
"Y": {
"max": 1
},
"Tooltips": {
"max": 5
}
}
],
"categorical": {
"categories": {
"for": {
"in": "Category"
},
"select": [
{
"for": {
"in": "Category"
}
},
{
"for": {
"in": "Tooltips"
}
}
],
"dataReductionAlgorithm": {
"bottom": {}
}
Expand All @@ -63,6 +84,11 @@
"for": {
"in": "Y"
}
},
{
"for": {
"in": "Tooltips"
}
}
],
"dataReductionAlgorithm": {
Expand Down Expand Up @@ -437,5 +463,14 @@
}
}
},
"tooltips": {
"supportedTypes": {
"default": true,
"canvas": true
},
"roles": [
"Tooltips"
]
},
"supportsHighlight": true
}
Loading
Loading