Use a third-party CSS or JS Framework, a self-hosted service like a CRM, or a third-party service with the site.

Views Chart Tools

Google Visualization API

Maintainer's note

It is very important when updating this module that you update Google Charts as well, at least during this stage in development. This module is still in its infancy, so features are being added frequently. Some dashboard configurations may not be stable enough for production sites, but enhancements and bug fixes will continue to be committed frequently. It is important that users get involved in promoting the stability of Views Chart Tools by taking the time to contribute with bug reports and feature requests.

Tutorials

We are currently developing tutorials on the various intermediate and advanced features of Views Chart Tools. Check back frequently for new documentation and tutorials.

Overview

Google Chart Tools for Drupal

Google Visualization API

Google Chart Tools API is a tool for developers to facilitate the use of Google Chart Tools and the Google Visualization API within the context of a Drupal site. It provides PHP and Javascript wrappers for all features of the Visualization API, and is built to reduce the common limitations of using a wrapper class.

Note: the following is only a brief summary of available classes and methods. In truth, the API is much larger than this as it aims to integrate as many features of the Visualization API as possible. Please see the module code for more information.

Creating a chart

Create a chart using new GoogleChartsChartWrapper([array $options]).

$chart_wrapper = new GoogleChartsChartWrapper(array(
  // Note that chart type must match a chart class available
  // in the google.visualization object.
  'chartType' => 'BarChart',
  'chartName' => 'bar_1',
  'containerId' => 'bar-1',
  'options' => array(
    'chartArea' => array(
      'width' => 600,
      'height' => 600,
    ),
  ),
));

Here's the Javascript API equivalent of the preceeding:

var chart_wrapper = new Drupal.GoogleCharts.Chart('BarChart', 'bar-1', {chartArea: {width: 600, height: 600}});

Tingwo

Preface

This module aid to integrate with the Tingwo Web Voice service.

UC Webpay

This module implements an Ubercart payment method for the St. George Bank Webpay credit-card payment processing API.

Activity Report

This module keeps a log of who has created, updated, published, unpublished, or deleted nodes on your site. It allows you to download this data in a CSV export.

Pages

Subscribe with RSS Subscribe to RSS - Integrations