I'm new to lightweight-chart and have data that 5 minutes apart on each row. Now I need to remove the non market hours - See below. Any option to remove this?
Current chart option
const chart = createChart(chartContainerRef.current, {
crosshair: {
mode: 0, // CrosshairMode.Normal
},
layout: {
background: { type: ColorType.Solid, color: colors.backgroundColor },
textColor: colors.textColor,
},
timeScale: {
borderColor: "#fff000",
visible: true,
timeVisible: true,
secondsVisible: true,
},
width: chartContainerRef.current.clientWidth,
height: 500,
});
chart.timeScale().fitContent();