-
Notifications
You must be signed in to change notification settings - Fork 7
Labels
bugSomething isn't workingSomething isn't working
Description
Checklist
- I am able to reproduce the bug with the latest version
- I made sure that there are no existing issues - open or closed - which I could contribute my information to.
- I have taken the time to fill in all the required details. I understand that the bug report will be dismissed otherwise.
- This issue contains only one bug.
Affected version
2.7.0
Steps to reproduce the bug
The class software.xdev.chartjs.model.options.Tooltip is missing the booleans:
- intersect
- displayColors
- rtl
See api: https://www.chartjs.org/docs/latest/configuration/tooltip.html
Could be missing other properties.
Expected behavior
example expected api:
new Plugins()
.setTooltip(new software.xdev.chartjs.model.options.Tooltip()
.setEnabled(true)
.setIntersect(true)
.setDisplayColors(false)
.setRtl(false)
);
Actual behavior
The setters:
.setIntersect(true)
.setDisplayColors(false)
.setRtl(false)
are not available in class Tooltip.
Additional information
No response
melloware
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working