zeroin

Results 54 comments of zeroin

This is how ValueAxis works, it shows tooltip of the nearest data point. To solve your problem, you should change your xAxis type to DateAxis and then set xAxis for...

If you want to have two columns here, you should use HorizontalLayout instead of GridLayout. Also, set width for the legend to some percent value: https://codesandbox.io/s/young-sound-mfyc93?file=/src/LineChart.js:3849-3872

This is a problem on our side, we will fix it in next release. Meanwhile you can solve this by adding a legend into another Container: https://codepen.io/team/amcharts/pen/PoEzyaO/111218e738a8696a07b3c44e2fd66a42

After some testing I find out that I can't apply the fix, as it causes some other issues. So I am afraid having a legend in a additional container might...

I guess you call `legend.height()` without waiting for the legend to be built. You should do that on `boundschanged` event: ``` legend.events.on("boundschanged", function(){ console.log(legend.height()) }) ``` This will console the...

Hi, This is by design, it's how Gapless date axis works. The only way to add extra space would be to add data items to the end of your data...

An alternative would be to set `end` for the xAxis after the data is validated: https://codepen.io/team/amcharts/pen/zYWaZrM/2b24c6da2096035e560c36ea5068999b?editors=0010 ``` series.events.on("datavalidated", function(){ xAxis.set("end", 1.1) }) ``` but the dates for the extra space...

I think the main problem in your case is that you set baseDuration to a second while your data is minutely. If you set: `baseInterval: { timeUnit: "minute", count: 1...

Columns are not displaced, they are shown in the middle of the cell of a second. And grid line shows the beginning of a second. If you add locationX:0 to...

Sure, just set rotation:90 or -90 for you Label.