same custpm color for multiple ID charts
-
Hi,
I need to know if is it possible add more than one ID in the color function, thank you so much:add_action( ‘woocommerce_register_form_start’, ‘wooc_extra_register_fields’ );
function easy_charts_get_chart_configurations_callback( $ec_chart_option, $chart_id, $meta_key ){
if( $chart_id == 3706 && $meta_key == ‘graph’ ){
$ec_chart_option[‘custompalette’] = array(
‘#4eafe4’,
‘#d17ba8’,
‘#dedede’,
‘#0a0a0a’,
);}
return $ec_chart_option;
}add_filter( ‘easy_charts_get_chart_configurations’, ‘easy_charts_get_chart_configurations_callback’, 10, 3 );
- The topic ‘same custpm color for multiple ID charts’ is closed to new replies.