3.0.4 • Published 4 years ago

presentation-chart v3.0.4

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
4 years ago

presentation-chart

A charting component based on Augmented Next Presentation

API

Table of Contents

HorizontalBarChartView

Extends Colleague

Horizonal Bar Chart

Parameters

Examples

const chart = new HorizontalBarChartView({
 "title": "Dogs by Breed",
 "xTitle": "Dog",
 "yTitle": "Weight",
 "xStart": 0,
 "xEnd": 100,
 "yStart": 0,
 "yEnd": 100,
 "data": [{
  "X": "Poodle",
  "Y": 12,
  "style": "red"
 }]
});
* supported 'styles' = red, purple, yellow, blue, black, orange, green

VerticalBarChartView

Extends Colleague

Vertial Bar Chart

Parameters

Examples

const chart = new VerticalBarChartView({
 "title": "Dogs by Breed",
 "xTitle": "Weight",
 "yTitle": "Breed",
 "xStart": 0,
 "xEnd": 100,
 "yStart": 0,
 "yEnd": 100,
 "data": [{
  "X": 12,
   "Y": "Poodle",
  "style": "blue"
 }]
});
* supported 'styles' = red, purple, yellow, blue, black, orange, green
3.0.4

4 years ago

3.0.3

4 years ago

3.0.2

4 years ago

3.0.1

4 years ago

3.0.0

4 years ago

1.3.1

5 years ago

1.3.0

5 years ago

1.2.2

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.0

6 years ago