7px
09/30/2022, 1:28 AMbattk
09/30/2022, 1:58 AMbattk
09/30/2022, 1:58 AMbattk
09/30/2022, 1:58 AMTh3VanMan
10/04/2022, 6:03 PMvar newChart = portletObj.addField({
id: 'chart1',
type: 'inlinehtml',
label: 'Chart 1'
});
newChart.defaultValue = "<canvas id='newChart' width='400' height='600'></canvas>" //Creates the canvas for the chart.js to useTh3VanMan
10/04/2022, 6:05 PMvar thisChart = document.getElementById('newChart').getContext('2d'); //This element ID is defined in the Portlet as an Inline HTML element of canvas type
Th3VanMan
10/04/2022, 6:10 PM