Home Forums Report Bugs Chart doesn’t work on Mobil Chrome

Chart doesn’t work on Mobil Chrome

Viewing 4 posts - 1 through 4 (of 4 total)
  • #28714

    On my Web the chart doesn’t works on Iphone Chrome, but it works on Android Chrome and Windows PC Chrome.

    DEMO

    GitHub

    Thanks!

    #28718

    @drakehawke,

    It seems to be working fine, please refer screenshot below.

    CanvasJS Charts

    To make us understand the scenario better to help you resolve the issue, can you kindly share the OS & Browser versions?

    —-
    Manoj Mohan
    Team CanvasJS

    #28730

    I keep trying and I found that the problem was in this part of the code (the IF comparing the dates:

    const filter = new Date('2020-03-13');
    
    if (new Date(convertDate(caso[0].replace("\"","").replace("\"",""))) > filter ){
    /* some code */
    }

    Where ‘caso[0]’ was like ‘”03/13/20″”‘ litheraly, with one quote at the begining and two quotes at the end.
    I needed the format ‘2020-03-13’ and I did those things to clean the string to compare those dates to filter empty data from the array.
    Then i figured out that the dates were the problemn and I fixed it using another control before this part of the code.
    Using a control on the FOR loop. Commit Fix for IOS

    So, the dates are no soported on IOS I think.

    Without the IF and date comparison, it worked fine.

    THANKS!!!

    #28734

    @drakehawke,

    Glad that you figured it out.

    —-
    Manoj Mohan
    Team CanvasJS

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

You must be logged in to reply to this topic.