How to customize the Label Frequency when zoom in [amChart(serial)]

452 Views Asked by At

I am using amChart(serial) for showing graph. I have data of length more than 4000. I managed to show the last label value of category axis through "labelFunction" : formatLabel,. But now the problem is to set the label frequency =10. whenever a user zoom in the graph. Please help, Thanks in advance.

here is code,

    var  chart= AmCharts.makeChart("rmChart",
        {


            "theme": "light",

            "autoMargins": true, "chartScrollbar": {},
            "type": "serial",
            "categoryField": 'x-distance',
            "legend": {
                "useGraphSettings": false
            },

            "zoomControl": {
                "panControlEnabled": false,
                "zoomControlEnabled": false
            },

            "categoryAxis": {

                "autoGridCount":false,

                "includeHidden":true,

                "dashLength":1,
                " axisAlpha":1,

               "gridPosition": "start",

               "labelFunction" : formatLabel,
              "minHorizontalGap":20,

                "title": "Distance In Meters [m]"
            },
            "chartCursor": {
                "zoomable":true,
                "enabled": true,

            },
            "chartScrollbar": {
                "enabled": false
            },
            "trendLines": [],
            "valueAxes": [{

            }],
            "graphs": [
                {
                    "balloonText": "Distance:[[x-axis]] dB:[[y-axis-0]]",

                    "fillAlphas": 0,
                    "fillToAxis": "x",
                    "lineAlpha": 1,
                    "valueField": "x-axis",
                    "valueField": "y-axis-0",

                    "lineColor": "#FF6600",

                },


            ],
            "guides": [],
            "valueAxes": [
                {
                    "id": "ValueAxis-1",
                    "title": "Strength [dB]",
                    "titleFontSize": 15,

                }
            ],

            "balloon": {},
            "legend": {
                "enabled": false,
                "useGraphSettings": false

            },
            "titles": [
                {
                    "id": "Title-1",
                    "size": 15,
                    "text": data[0]["date"]
                }
            ],
            "dataProvider": data,
            export: {
                enabled: false
            },
            "export": {
                "enabled": true,
                "menu": []
            },
            "chartScrollbar": {

                "enabled":false
            },


        });
  function formatLabel(value, valueText, axis) {
if (valueText.category%2==0) {
                    var lastNumber = (Math.abs(valueText.category) % 10)


                    if (lastNumber==0) {

                        return valueText.category;
                    }

                }
                if (valueText.category==data.length-1) {

                    return valueText.category;
                }
                else{


                    return "";
                }
}

here is link to the jsfiddle

https://jsfiddle.net/8zw9h007/10/
0

There are 0 best solutions below