org.sfree.chart

ChartFactory

object ChartFactory extends ChartFactory

Contains factory methods to conveniently create charts.

The only argument needed to create a chart is the dataset:

val data = Seq((0,0),(1,1),(2,2)).toXYSeriesCollection("some data")
val chart = XYLineChart(data)

The other arguments have defaults and can be conveniently overridden with named arguments:

val data = Seq((0,0),(1,1),(2,2)).toXYSeriesCollection("some data")
val chart = XYLineChart(data, legend = false, domainAxisLabel = "some description")
Linear Supertypes
ChartFactory, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ChartFactory
  2. ChartFactory
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. object AreaChart

    Factory methods for area charts.

  7. object BarChart

    Factory methods for bar charts.

  8. object LineChart

    Factory methods for line charts.

  9. object MultiplePieChart

    Factory methods for multiple pie charts.

  10. object PieChart

    Factory methods for pie charts.

  11. object RingChart

    Factory methods for ring charts.

  12. object XYAreaChart

    Factory methods for area charts.

  13. object XYBarChart

    Factory methods for bar charts.

  14. object XYLineChart

    Factory methods for line charts.

  15. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  16. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  17. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  19. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  27. def toString(): String

    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  29. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  30. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from ChartFactory

Inherited from AnyRef

Inherited from Any

Ungrouped