jQuery UI Widgets Forums Chart JQXChart category axis label issue

This topic contains 1 reply, has 2 voices, and was last updated by  Dimitar 10 years, 6 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • JQXChart category axis label issue #54795

    mahesh7460
    Participant

    Hi All,

    I am using stackedline chart of JQWidgets and so far its working well, now I have a small issue like :

    For the category axis label value when I am passing “090909”, but in the chart its plotting as “90909” ignoring the first 0 as the library is parsing label value as number.

    Please let me know how we can fix it?

    JQXChart category axis label issue #54821

    Dimitar
    Participant

    Hello mahesh7460,

    You can do the following as a workaround:

    categoryAxis:
        {
            dataField: 'Country',
            showGridLines: true,
            formatFunction: function (value) {
                return value;
            }
        },

    Best Regards,
    Dimitar

    jQWidgets team
    http://www.jqwidgets.com/

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.