我正在尝试使用Apex条形图制作此条形图,但我似乎无法进行上面的条形说明(Opa,Go,Dont,Maybe,是)。无论如何,我可以使用Apex图表做到这一点吗?
这是我的代码:
var options = {
series: [{
data: [ '. $row['escopoMat'] .',' . $row['gerMat'] . ', ' . $row['progMat'] . ', ' . $row['riscCredMat'] . ', ' . $row['riscMerMat'] . ', ' . $row['riscOpMat'] . ', ' . $row['riscOpMat'] . ', ' . $row['riscLiqMat'] . ', ' . $row['gerCapMat'] . '],
}],
chart: {
type: "bar",
height: 350
},
plotOptions: {
bar: {
horizontal: true,
}
},
dataLabels: {
enabled: false,
},
xaxis: {
categories: ["Ambiente Interno", "Estabelecimento de Objetivos", "Identificação de Eventos", "Avaliação de Riscos", "Resposta ao Risco", "Atividades de Controle", "Informação e Comunicação",
"Monitoramento"
],
}
};
var chart = new ApexCharts(document.querySelector("#chart"), options);
chart.render();
谢谢您的帮助!