Anthony P
Anthony P
Could you provide a little more information, such as a small reproducable demo on jsfiddle or codepen that demonstrates the error and browser(s) where this occurs so we can troubleshoot?...
@blacktender If you're still having this issue, could you provide a codepen or stackblitz that reproduces the problem? The scrollbars are showing up correctly for me [here](https://stackblitz.com/edit/amcharts3-react-gantt-scrollbars-sccptz) using the component.
`HH` returns values from 1-24 so Jun 01, 2015 24:00 is valid based on the ISO interpretation of 24 hour time. If you want the date to change, use `JJ`...
As mentioned in your SO post, try setting `equalSpacing` to true in the categoryAxis object to work around this. [Updated fiddle](https://jsfiddle.net/mLjv3s0p/)
Assuming you're using equalSpacing, your data is sorted and grouped in ascending order, and the minPeriod is set correctly, there's not much else to suggest outside of not using smoothedLine...
Generally speaking, creating any chart type requires including the corresponding script files (`serial.js` for line/column/step/candlestick, `xy.js` for bubble/scatter, `pie.js` for pie, etc) and setting the appropriate config (the second parameter...
Serial charts can only have one horizontal/X axis (or Y if `rotate: true` is set), and that axis must be a category axis, which isn't fully numeric. You can set...
Are you referring to the axis grid lines? You can hide them by setting the corresponding axis' `gridAlpha` to 0, e.g. ``` valueAxes: [{ // ... gridAlpha: 0, // ......
Language only impacts built-in elements generated by the library directly like date and time labels and the zoom out button. All user-provided data, labels, titles, categories, etc are not impacted...
Try setting `table-layout: fixed;` in the table containing the chart. You'll need to set an explicit size on your listCell, though. I also recommend updating to 3.21.15 as you're using...