Skip to content

Webtask servless code for responsive chart creation

Notifications You must be signed in to change notification settings

YagoLopez/webtask-charts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chart Webtask

End points:



  • url: /demo

  • method GET

  • returns a demo of a default chart

  • This route accepts the query parameter: chartType

  • The query parameter chartType can have the following values: bar, line, scatter, pie, percentage


  • url: /post
  • method: POST
  • The user can post data to this url and gets a chart in return
  • This route also accept chartType as a parameter with the before mentioned values

  • url: /restricted
  • method: GET
  • This is a example of route that needs authorization to access

Chart data format:

{ 
  "labels": string[], 
  "datasets": [
    {
      "title": string, 
      "values": number[]
    }
  ]
}

For example, to get a chart from user data, send a POST request to the webtask url adding /post to the path with the following data in the request body:

{
  "labels": ["12am-3am", "3am-6am", "6am-9am", "9am-12pm",
    "12pm-3pm", "3pm-6pm", "6pm-9pm", "9pm-12am"],

  "datasets": [
    {
      "title": "Some Data",
      "values": [25, 40, 30, 35, 8, 52, 17, -4]
    },
    {
      "title": "Another Set",
      "values": [25, 50, -10, 15, 18, 32, 27, 14]
    },
    {
      "title": "Yet Another",
      "values": [15, 20, -3, -15, 58, 12, -17, 37]
    }
  ]
}

Developed by Yago Lopez

About

Webtask servless code for responsive chart creation

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published