You are here

function d3_library_linegraph_views_settings in d3.js 7

File

libraries/d3.linegraph/views-settings.php, line 2

Code

function d3_library_linegraph_views_settings() {
  return array(
    'height' => array(
      '__form_element' => array(
        'title' => 'Height',
        'description' => 'The height of the entire visualization',
        'default_value' => 400,
      ),
    ),
    'width' => array(
      '__form_element' => array(
        'title' => 'Width',
        'description' => 'Width of the entire visualization.',
        'default_value' => 900,
      ),
    ),
  );
}