Home Forums Report Bugs Chart is not vIsible in Google Chrome

Chart is not vIsible in Google Chrome

Viewing 11 posts - 16 through 26 (of 26 total)
  • #5217

    Himanshu,

    I just got an update for Chrome 29.0.1547.66 m and it seems to be working fine. Can you please update chrome and confirm the same?


    Sunil Urs

    #5218

    Updated to .66m; unfortunately I am still seeing the issue

    #5237

    Some users are still reporting this issue. Is anyone else still seeing it?

    #5240

    Me too

    #5244

    I can confirm that the issue still exists – now I’ve been able to reproduce it consistently on a desktop. Looking at the discussion am sure Google hasn’t pushed the update yet.

    #5271

    I updated my Chrome earlier today to: 29.0.1547.76; and haven’t run into the issue in last 4-5 hours of usage. Other folks here have had similar observation. So it seems that Google has released the fix.

    Thanks again Sunil. Appreciate quick responses.

    #5272

    Himanshu,

    Thanks for the confirmation. Me and my colleague observed the same couple of hours ago but were waiting for couple of confirmations before getting into any conclusion.

    Can any one else update chrome & confirm the same please.


    Sunil Urs

    #5295

    Hi Sunil.

    Hi Sunil.

    I install the version 29.0.1547.76 m of CHrome

    and my application works with ZOOM and PAN in IE8

    in CHROME ZOOM works fine but when typing the PAN button the graph is initialized.

    Thanks in Advance.

    #5296

    Thanks for confirming.

    in CHROME ZOOM works fine but when typing the PAN button the graph is initialized.

    Continuing in this thread.

    #20933

    My chart is not displaying.
    Following is my code:

    <?php
     $con = mysqli_connect("localhost","root","root","current_resources");
     
     $result= mysqli_query($con, "SELECT Publisher,COUNT(Publisher) FROM resources GROUP BY Publisher");
       // $result2 = mysqli_query($con, "SELECT  FROM resources GROUP BY Publisher");
        
        while($row = mysqli_fetch_array($result))
        {        
            $dataPoints= array("label" => $row['Publisher'] , "y" => $row['COUNT(Publisher)']);
        }
     
    ?>
    <!DOCTYPE HTML>
    <html>
    <head>
    <script>
    window.onload = function() {
     
     
    var chart = new CanvasJS.Chart("chartContainer", {
    	animationEnabled: true,
    	title: {
    		text: "Publisher "
    	},
    	subtitles: [{
    		text: "Statistics"
    	}],
    	data: [{
    		type: "pie",
    		yValueFormatString: "#,##0.00\"%\"",
    		indexLabel: "{label} ({y})",
    		dataPoints: <?php echo json_encode($dataPoints, JSON_NUMERIC_CHECK); ?>
    	}]
    });
    chart.render();
     
    }
    </script>
    </head>
    <body>
    <div id="chartContainer" style="height: 370px; width: 100%;"></div>
    <script src="https://cdn.canvasjs.com/canvasjs.min.js"></script>
    </body>
    </html>
    #20937

    @prashasti,

    Can you kindly share a sample project along with sample data over Google-drive or Onedrive so that we understand your scenario better and help you out?

    __
    Priyanka M S
    Team CanvasJS

Viewing 11 posts - 16 through 26 (of 26 total)

You must be logged in to reply to this topic.