1.0.1 • Published 8 years ago

vudash-widget-google-sheets v1.0.1

Weekly downloads
5
License
-
Repository
-
Last release
8 years ago

@vudash/google-sheets

Plucks values from Google Sheets and display them on a Vudash Dashboard

Usage

Simply include in your dashboard, and configure as required:

  {
    "widget": "@vudash/google-sheets",
    "options": {
      "description": "What this is."
      "sheet": "your-google-spreadsheets-key",
      "tab": "Tab Name",
      "column": "Column Heading"
    }
  }

Where description will sit under your value on the dashboard, sheet is the google sheets key to pull data from, tab is the name of the tab to pull from, and column is the column heading to pull from.

You could pull data from a spreadsheet like this:

NameStuffSales
JimThing31

Using:

  {
    "widget": "@vudash/google-sheets",
    "options": {
      "description": "Jim's Sales"
      "sheet": "your-google-spreadsheets-key",
      "tab": "My Tab",
      "column": "Sales"
    }
  }