* Once you have generated a chart object, you can run drupal_render() on it
* to turn it into HTML:
*
* @code
* $output = drupal_render($chart);
* @endcode
*
* There are many, many properties available for the four chart types (chart,
* chart_data, chart_xaxis, and chart_yaxis). For a full list, see the
* charts_element_info() function.
*
* @see charts_element_info()
*/
useDrupal\charts\Theme\ChartsInterface;
/**
* Alter an individual chart before it is printed.
*
* @param mixed $chart
* The chart renderable. Passed in by reference.
* @param mixed $chart_id
* The chart identifier, pulled from the $chart['#chart_id'] property (if
* any). Not all charts have a chart identifier.
*/
functionhook_chart_alter(&$chart,$chart_id){
if($chart_id==='view_name__display_name'){
// Individual properties may be modified.
$chart['#title_font_size']=20;
}
}
/**
* Alter an individual chart before it's rendered.
*
* Same as hook_chart_alter(), only including the $chart_id in the function
* name instead of being passed in as an argument.
*
* @param mixed $chart
* Chart.
*
* @see hook_chart_alter()
*/
functionhook_chart_CHART_ID_alter(&$chart){
}
/**
* Alter an individual chart's raw library representation.
*
* This hook is called AFTER hook_chart_alter(), after Charts module has
* converted the renderable into the chart definition that will be used by the
* library. Note that the structure of $definition will differ based on the
* charting library used. Switching charting libraries may cause your code
* to break when using this hook.
*
* Even though this hook may be fragile, it may provide developers with access
* to library-specific functionality.
*
* @param mixed $definition
* The chart definition to be modified. The raw values are passed directly to
* the charting library.
* @param mixed $chart
* The chart renderable. This may be used for reference (or read to add
* support for new properties), but any changes to this variable will not
* have an effect on output.
*
* @internal param $chart_id The chart ID, derived from the $chart['#chart_id'] property. Note that not* The chart ID, derived from the $chart['#chart_id'] property. Note that not
// * There are many, many properties available for the four chart types (chart,
// * chart_data, chart_xaxis, and chart_yaxis). For a full list, see the
// * charts_element_info() function.
// *
// * @see charts_element_info()
// */
//
//use Drupal\charts\Theme\ChartsInterface;
//
///**
// * Alter an individual chart before it is printed.
// *
// * @param mixed $chart
// * The chart renderable. Passed in by reference.
// * @param mixed $chart_id
// * The chart identifier, pulled from the $chart['#chart_id'] property (if
// * any). Not all charts have a chart identifier.
// */
//function hook_chart_alter(&$chart, $chart_id) {
// if ($chart_id === 'view_name__display_name') {
// // Individual properties may be modified.
// $chart['#title_font_size'] = 20;
// }
//}
//
///**
// * Alter an individual chart before it's rendered.
// *
// * Same as hook_chart_alter(), only including the $chart_id in the function
// * name instead of being passed in as an argument.
// *
// * @param mixed $chart
// * Chart.
// *
// * @see hook_chart_alter()
// */
//function hook_chart_CHART_ID_alter(&$chart) {
//}
//
///**
// * Alter an individual chart's raw library representation.
// *
// * This hook is called AFTER hook_chart_alter(), after Charts module has
// * converted the renderable into the chart definition that will be used by the
// * library. Note that the structure of $definition will differ based on the
// * charting library used. Switching charting libraries may cause your code
// * to break when using this hook.
// *
// * Even though this hook may be fragile, it may provide developers with access
// * to library-specific functionality.
// *
// * @param mixed $definition
// * The chart definition to be modified. The raw values are passed directly to
// * the charting library.
// * @param mixed $chart
// * The chart renderable. This may be used for reference (or read to add
// * support for new properties), but any changes to this variable will not
// * have an effect on output.
// *
// * @internal param $chart_id The chart ID, derived from the $chart['#chart_id'] property. Note that not* The chart ID, derived from the $chart['#chart_id'] property. Note that not