Skip to content

Tooltip - Missing booleansΒ #330

@DazzlingBob

Description

@DazzlingBob

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

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions