Forum Replies Created by Daniel Silva

Viewing 15 posts - 31 through 45 (of 46 total)
  • in reply to: datetime format #6302

    Ok, I can work with that.
    thanks

    in reply to: memory leak #6292

    Tried a different approach, works great :)

    if(charts[key]==undefined){
       //create chart....
       charts[key]=chart;		
    }else{
       chart = charts[key];
       chart.options.data[0].dataPoints=points;
    }				
    chart.render();
    • This reply was modified 9 years, 11 months ago by Daniel Silva.
    • This reply was modified 9 years, 11 months ago by Daniel Silva.
    in reply to: memory leak #6291

    Ok, I will try that.

    What is consuming memory, the chart objects or something about the canvas?

    Br,
    Daniel

    in reply to: bug drawing pie #6281

    Great, thanks.

    Sometimes the forum doesn’t send emails after the replies :/

    in reply to: Export chart to PNG/PDF #6278

    Hi,

    Are you planning to implement this using canvas.toDataURL or using a script in the server?

    Br,
    Daniel Silva

    in reply to: another bug with pie #6213

    It’s working great, excellent support as always.
    Thanks

    in reply to: bug drawing pie #6175

    Hi,

    Any news?

    Thanks,
    Daniel

    in reply to: bug drawing pie #6084
    in reply to: Changing options after creating the chart. #5997

    It’s working great, many thanks.
    Unfortunately I had to stop the development of the reports because of another project, but I expect to buy and migrate all charts to CanvasJS in a few weeks.

    Br,
    Daniel

    in reply to: Changing options after creating the chart. #5960

    Hi,

    An alternative for what I need is saving the original object used to create the chart, modify this object, destroy the old chart and creating a new chart with the new object.
    But that will increase memory in case of dashboards with many charts.

    Thanks

    in reply to: Changing options after creating the chart. #5949

    Is possible to change the options object by another or I have to change the attributes one by one?
    Thanks

    in reply to: Changing options after creating the chart. #5934

    Hi,
    In the example I give is working great.
    Then I tried to send all options by json to PHP, alter the theme, return also by json, change the chart options,render the chart, and the theme is not altered.

    JS:

    var chart = new CanvasJS.Chart("content",
    {
    	theme: "theme1",
    	title:{
    		text: "Changing Theme"
    	},
    	data: [
    	{
    		type: "column",
    		dataPoints: [
    		{ x: 10, y: 71 },
    		{ x: 20, y: 55},
    		{ x: 30, y: 50 },
    		{ x: 40, y: 65 },
    		{ x: 50, y: 95 },
    		{ x: 60, y: 68 },
    		{ x: 70, y: 28 },
    		{ x: 80, y: 34 },
    		{ x: 90, y: 14}
    		]
    	}
    	]
    });
    chart.render();
    var json=JSON.stringify(chart);
    
    success = function(jsonObject) {
    	chart.options=JSON.parse(jsonObject.chartOptions);
    	chart.render();
    };
    jsonRequest(json,success);

    PHP:

    $s=json_decode ( $_REQUEST['json'] ,true);
    $s['options']['theme']="theme2";
    $response->chartOptions=json_encode ($s);

    Br,
    Daniel

    in reply to: Changing options after creating the chart. #5926

    If we could change any of the options and them call render would be great :)

    Thanks

    in reply to: Changing options after creating the chart. #5924

    Its chart.options.theme=”theme2″;
    Still doesn’t work :/

    in reply to: Missing labels on firefox 27.01 #5890

    After a restart is all working great :/
    Thanks

Viewing 15 posts - 31 through 45 (of 46 total)