I reply to all queries on the forums and via email, once per day, Monday to Friday (not weekends).

If you are new here, please see some information on how to ask for support. Thank you!

Reply To: Responsive chart canvas

dashed-slug.net Forums Exchange extension support Responsive chart canvas Reply To: Responsive chart canvas

#9950
alexg
Keymaster

Hello,

Are you referring to the chart? (wallets_exchange_chart] shortcode)

The chart is redrawn on window resize. From wallets-exchange.js:


// resize all charts whenever window resizes
$( window ).resize( function( e ) {
	$( '.dashed-slug-wallets-exchange.chart .chart-container').each(
		function( i, el ) {
			drawChart( el );
		}
	);
} );

Not sure if this is what you mean?