- Chart.js 教程
- Chart.js - 主页
- Chart.js - 简介
- Chart.js - 安装
- Chart.js - 语法
- Chart.js - 基础知识
- Chart.js - 颜色
- Chart.js - 选项
- Chart.js - 交互
- Chart.js - 图例
- Chart.js - 标题
- Chart.js - 动画
- Chart.js - 工具提示
- Chart.js - 折线图
- Chart.js - 条形图
- Chart.js - 雷达图
- Chart.js - 圆环图
- Chart.js - 饼图
- Chart.js - 极地面积图
- Chart.js - 气泡图
- Chart.js - 散点图
- Chart.js - 混合图表
- Chart.js - 笛卡尔轴
- Chart.js - 类别轴
- Chart.js - 径向轴
- Chart.js 有用资源
- Chart.js - 快速指南
- Chart.js - 有用的资源
- Chart.js - 讨论
Chart.js - 工具提示
Chart.js Tooltip 为我们提供了在图表中显示工具提示文本的选项。工具提示是一个图形 UI 元素,当我们将鼠标悬停在图表元素上时,它会提供额外的信息。动画配置的命名空间是options.plugins.tooltip。
句法
图表工具提示语法如下 -
options: { plugins: { tooltip: { enabled: true, (Write tooltip's style element) }, } }
工具提示启用属性必须为true才能显示数据标签。如果它设置为false,则工具提示将被停用。
例子
让我们举一个例子,我们将使用各种工具提示配置 -
<!DOCTYPE> <html> <head> <meta charset- "UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>chart.js</title> </head> <body> <canvas id="chartId" aria-label="chart" height="350" width="580"></canvas> <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.1.1/chart.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.1.1/helpers.esm.min.js"></script> <script> var chrt = document.getElementById("chartId").getContext("2d"); var chartId = new Chart(chrt, { type: 'bar', data: { labels: ["HTML", "CSS", "JAVASCRIPT", "CHART.JS", "JQUERY", "BOOTSTRP"], datasets: [{ label: "online tutorial subjects", data: [20, 40, 30, 35, 30, 20], backgroundColor: ['coral', 'aqua', 'pink', 'lightgreen', 'lightblue', 'crimson'], borderColor: ['red', 'blue', 'fuchsia', 'green', 'navy', 'black'], borderWidth: 2, }], }, options: { responsive: false, plugins: { tooltip: { enabled: true, usePointStyle: true, titleAlign: 'center', titleColor: 'gold', titleSpacing: 3, TitleFont: { weight: 'bold' }, backgroundColor: 'midnightblue', bodyColor: 'orange', bodyAlign: 'center', bodyFont: { weight: 'italic' }, callbacks: { labelPointStyle: function(context) { return { pointStyle: 'circle', rotation: 0 }; }, } } } }, }); </script> </body> </html>
使用“编辑并运行”选项在线执行代码,然后将鼠标悬停在栏上并观察工具提示的样式。
输出
以下输出图表显示了各种工具提示配置 -