Martynas Majeris

Results 280 comments of Martynas Majeris

The gap between different categories is regulated by [`columnWidth`](http://docs.amcharts.com/3/javascriptcharts/AmSerialChart#columnWidth). The default setting of 0.8 should provide a pretty good result. In your case it looks like you have it set...

It seems you are using doubleslash before "n" (`\\n`) which escapes the first slash. If I remove one slash, the line break works regardless if labels are rotated or not:...

Got it. Yeah, autowrapping is disabled when labels are rotated. There's no sure way to calculate autowrapping on rotated text :(

Yes that makes sense. We will consider implementing it. Unfortunately, I can't provide any ETA or guarantees it will be implemented. Thanks!

I'm afraid I'm not entirely sure what is the question. Let me just reiterate if I'm understanding you correctly. You want a line graph with a shadow, but want to...

We have an article in our Knowledge Base that describes how to do this: https://www.amcharts.com/kbase/creating-custom-maps-for-javascript-ammap/ Hope this helps!

Upgrading pdfmake version takes time and effort. There have been some breaking changes beweek minor versions before, so we're taking it slow. We will update eventually, though. Meanwhile, I suggest...

You can use an adapter for bullet: ```JavaScript series.bullets.push(function() { var label = am5.Label.new(root, { text: "{valueYTotal}", fill: am5.color(0x000000), centerY: am5.p100, centerX: am5.p50, populateText: true }); label.adapters.add("text", function(text, target) {...

We use `unkown` in a a very few places. In those places where we cannot enforce any kind of structure, like `dataContext` that you mentioned, which is a raw user...

There's no way to set fixed distance between candlesticks, I'm afraid. You can manipulate relative width (to the width of the category) of the candlestick by setting [`columnWidth`](http://docs.amcharts.com/3/javascriptstockchart/PanelsSettings#columnWidth) property in...