このコードでは、動的に(var 1、var 2、var 3などを使用せずに)地図を作成したいと思います。ここでダイナミックなコードチャートヘッドマップのリスクマトリックス
var heatMaRiesgoInherente = dataSetRiesgoInherente.mapAs({ x: [4], y: [3], value: [0], heat: [0], fill: [1] });
// Crea el stage con el elemento container
var stage = acgraph.create("container");
// helper function to setup same settings for all six charts
var setupChartSettings = function (chart) {
chart.container(stage);
chart.padding([1, 10, 5, 10]).margin(0);
//chart.interactivity().selectionMode("none");
//Activo texto en los vectores
chart.xAxis(true);
//Color de Borde
chart.stroke("#D8D8D8");
//D8D8D8
//E6E6E6
chart.xAxis().staggerMode(false);
//Texto en el vector Y
chart.yAxis().stroke('#4195EE').ticks().enabled(false);
//Texto en el vector X
// Quita los labels dentro de las cajas de texto
//chart.labelsDisplayMode('drop');
chart.labels().enabled(false);
// Aca habilito los Tooltip
chart.tooltip(true);
chart.tooltip().title().useHtml(true);
// Creates el mapa para el Riesgo Inherente
var menChart = anychart.heatMap(heatMaRiesgoInherente);
//Titulo
menChart.title().text('Mapa de Calor de Riesgo Inherente');
//Tamaños de los cuadros
menChart.bounds(0, 0, "100%", "50%");
//Asigna la configuracion
setupChartSettings(menChart);
menChart.draw();
あなたの質問を詳しく教えてください。動的にやりたいことや直面している問題は明確ではありません。 –