You are here

function chart_get_library in Charts 7.2

Retrieve a specific chart library.

1 call to chart_get_library()
charts_examples in includes/charts.examples.inc
Menu callback; Display all examples in the system.

File

./charts.module, line 291
Provides elements for rendering charts and Views integration.

Code

function chart_get_library($library) {
  $info = charts_info();
  return $info[$library] ? $info[$library] : FALSE;
}