Labels of heatmap widget do not show correctly.

0
Hi, I want to use the heat map from the Charts-widget of Mendix to create the matrix below. So far this is what I created but the labels of the rows do not display correctly. I already tried to fix it by changing the width of the widget, but that didn't work. Do you guys have any idea?
asked
2 answers
2

I fixed the problem by changing the left margin from 60 to 250. Thanks for the assist Jelte! 

{
              "margin": {
    
                                  "l": 250 
}
}

 

answered
1

Hi Jacob,

The widget is based on Plot.ly. For PlotLy you can add layout options. I think this has to do with the width of the Y-axis. It should suffice to add this to the layout options:

{
	"yaxis": {
		"width": 300
	}
}

Does this solve your problem?

answered