karasiq / scalajs-highcharts   1.2.1

MIT License GitHub

Scala.js static typed facades for Highcharts library

Scala versions: 2.12 2.11
Scala.js versions: 0.6

scalajs-highcharts Build Status Scala.js Maven Central Scaladoc

Scala.JS static typed facades for Highcharts library

Links

How to use

Add dependency to your build.sbt

libraryDependencies += "com.github.karasiq" %%% "scalajs-highcharts" % "1.2.1"

Include the JavaScript files in the <head> section of your web page as shown below

<script src="http://code.highcharts.com/highcharts.js"></script>

Basic example

import scalajs.js, js.UndefOr
import org.scalajs.jquery.jQuery
import com.highcharts.HighchartsUtils._
import com.highcharts.HighchartsAliases._
import com.highcharts.config._

jQuery("#container").highcharts(new HighchartsConfig {
  // Chart config
  override val chart: Cfg[Chart] = Chart(`type` = "bar")

  // Chart title
  override val title: Cfg[Title] = Title(text = "Demo bar chart")

  // X Axis settings
  override val xAxis: CfgArray[XAxis] = js.Array(XAxis(categories = js.Array("Apples", "Bananas", "Oranges")))

  // Y Axis settings
  override val yAxis: CfgArray[YAxis] = js.Array(YAxis(title = YAxisTitle(text = "Fruit eaten")))

  // Series
  override val series: SeriesCfg = js.Array[AnySeries](
    SeriesBar(name = "Jane", data = js.Array[Double](1, 0, 4)),
    SeriesBar(name = "John", data = js.Array[Double](5, 7, 3))
  )
})

Full example

License

The MIT License (MIT)

Copyright (c) 2016 Karasiq

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.