I have a requirement where I need to show date-picker in Gantt chart.
Instead of highlighted text I want date-picker
I know if I click on the date text in the chart I can see date-picker but my for requirement want to see date-picker only instead of date text in blue color.
Please let me know if that is possible to implement.
I have tried all the properties from documentation But I am not getting result I want
You can't set it using the API but it is possible to get to it, but you need a little more knowledge of the library itself.
First, you need to override the function responsible for hiding inputs:
and then in the callback function
chart.events.render()call therangeSelecotrobject theshowInput()method to enable their visibility. In addition, you can hide the text below them and move them slightly apart:Demo: https://jsfiddle.net/BlackLabel/3ohwusm8/
API: https://api.highcharts.com/highcharts/chart.events.render
React demo: https://codesandbox.io/s/highcharts-react-forked-lvgs24?file=/index.js