I have assigned the min and max of Y axes with the tick configuration.But I do not want these min max values to be shown in the graph.I need to hide these values at both the end
Hiding the max worked this way for me (ng2-charts): I return undefined instead of value to hides tick's value & line
scales: { xAxes: [{ ticks: { callback: (value, index, values) => (index == (values.length-1)) ? undefined : value, },
...