-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
Example:
$options = new Options();
$options->plugins = [
'tooltip' => [
'enabled' => true,
'callbacks' => [
'label' => "function (context) {...}"
]
]
];
Expected result:
new Chart(ctx,{
type: "...",
data: {
// ...
},
options: {
// ...
plugins: {
tooltip: {
enabled: true,
callbacks: {
label: function (context) {
// ...
}
}
}
}
}
})
Actual result:
new Chart(ctx,{
type: "...",
data: {
// ...
},
options: {
// ...
plugins: {
tooltip: {
enabled: true,
callbacks: {
label: "function (context) {\n
// ...
\n}"
}
}
}
}
})
Metadata
Metadata
Assignees
Labels
No labels