Axis Ticks not visible on X Axis with more data

Hello Helical,

I am using Helical Insight 4.0. I am using a bar chart. When I have few data points, I can see all the values on the X axis. However, when the number of data points increases, I do not see all the values. I see only a few of the values on the X axis. Is there a way to see all the X axis values irrespective of the number of data points?

image

Thank You,
Netta.

Hello Netta,

This is the default behaviour of all axis charts. When the number of data points increases, it becomes difficult to read all the values on the X axis as there might be overlap. In order to avoid this issue, by default, we enable “culling”. Culling implies that certain values on the X axis shall not be visible. This pattern depends on the number of data points.

If you wish to display the values all the data points on the X axis and disable culling, use the following script in the JS Editor of your report. However please note that this can affect the readability on the X axis.

hi_container.set("preExecution",function(c)
{ 
	var viz_Options = c.get("viz_Options"); 
	viz_Options.chartOptions["axis"] = 
	{ 
		x:
		{ 
			tick: 
				{
				 culling: false 
				} 
		} 
	}; 
	c.set("viz_Options",viz_Options); 
});

image

Thank You,
Helical Insight.