XYChart tooltip overlaping

Hi,

We are trying to draw a Scatter chart using the cuba XYChart component, each item on the scater chart must have a tooltip (balloonText). If we have 2 items on the same position (same X and Y cordinats). the tooltips ovelaps ant you can read only the top one

Is there a way to properly view all the tool-tips?

<chart:xyChart id="xyChart"
               datasource="pSRIsDs"
               height="100%"
               responsive="true"
               width="100%">
    <chart:graphs>
        <chart:graph balloonText="name: [[grade]] [[salary]] [[name]] [[score]]"
                     bullet="TRIANGLE_UP"
                     fillAlphas="0"
                     lineAlpha="0"
                     xField="salary"
                     yField="score"/>
    </chart:graphs>
    <chart:valueAxes>
        <chart:axis id="x"
                    axisAlpha="0"
                    dashLength="1"
                    position="BOTTOM"
                    title="X Axis"/>
        <chart:axis id="y"
                    axisAlpha="0"
                    dashLength="1"
                    position="LEFT"
                    title="Y Axis"/>
    </chart:valueAxes>
</chart:xyChart>

We are using Cuba platform version: 6.8.13

Hi.
Unfortunately, amCharts 3 on which the XYChart component is based doesn’t provide the required behavior.