Open rsandor opened 10 years ago
Allow the basic chart's domain and range options to be given three different types:
domain
range
Array[2]
(@data) -> return Array[2]
String
This may or may not be needed, let's see how the library is used and if it becomes a pain point before implementing.
Allow the basic chart's
domain
andrange
options to be given three different types:Array[2]
- Where the first element is the minimum, and the second is the max(@data) -> return Array[2]
- Function that is passed the data for the chart and returns a min-max tupleString
- Name of a method on the chart instance that can be called to generate the min-max tuple.