package c3

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Pie : sig ... end

Pie charts, with or without a hole in the middle ("donut" charts).

module Gauge : sig ... end

A Gauge shows a single value within a defined minimum and maximum range

module Segment : sig ... end

A line segment within a Line chart

type flow_to = [
  1. | `OneInOneOut
    (*

    For every point added, remove the leftmost

    *)
  2. | `ToX of [ `Time of float | `X of float ]
    (*

    Move the minimum x co-ordinate to the given value

    *)
  3. | `Delete of int
    (*

    Delete exactly n points from the leftmost edge

    *)
]
module Line : sig ... end

A line chart