I'm not really sure on how to do this. I can get it to print by doing the code below however it comes out in black and white and there are 2 of them when I recreate the chart multiple times, but never more than two
var PrintString = "";
var c = $('.classcontainingChart').find('.jchartfx');
$(c).each(function (i, chart) {
PrintString += $(chart).html();
});
var PrintWindow = window.open('');
PrintWindow.document.write(PrintString);
PrintWindow.print();
PrintWindow.close();