Is it possible to display a chart within Virtual Agent?

BA1234
Kilo Contributor

I have a need for generating a chart from data kept in a table within the Virtual Agent chat.

Is there a way to display a small chart within a VA conversation?

I am trying the scrip response widget, and have tried this toy example that I adapted from the web but it does not work.

(function execute() {
var xyValues = [
{x:50, y:7},
{x:60, y:8},
{x:70, y:8},
{x:80, y:9},
{x:90, y:9},
{x:100, y:9},
{x:110, y:10},
{x:120, y:11},
{x:130, y:14},
{x:140, y:14},
{x:150, y:15}
];

new Chart("myChart", {
type: "scatter",
data: {
datasets: [{
pointRadius: 4,
pointBackgroundColor: "rgb(0,0,255)",
data: xyValues
}]
},
options: {
legend: {display: false},
scales: {
xAxes: [{ticks: {min: 40, max:160}}],
yAxes: [{ticks: {min: 6, max:16}}],
}
}
});
})()
0 REPLIES 0