Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spaced/scala-js-d3
d3 facade types for Scala.js
https://github.com/spaced/scala-js-d3
Last synced: 4 days ago
JSON representation
d3 facade types for Scala.js
- Host: GitHub
- URL: https://github.com/spaced/scala-js-d3
- Owner: spaced
- License: bsd-3-clause
- Archived: true
- Created: 2014-06-05T18:47:54.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-04-17T16:28:14.000Z (over 2 years ago)
- Last Synced: 2024-08-01T13:36:35.098Z (3 months ago)
- Language: Scala
- Size: 150 KB
- Stars: 104
- Watchers: 17
- Forks: 28
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ccamel - spaced/scala-js-d3 - d3 facade types for Scala.js (Scala)
README
# DEPRECATED
This repository is no longer actively maintained.
Use ScalaJS facade types for D3 version 5
[fdietze/scala-js-d3v4](https://github.com/fdietze/scala-js-d3v4)scala-js-d3
===============
[![Scala.js](http://scala-js.org/assets/badges/scalajs-0.6.5.svg)](http://scala-js.org)
[![Scala.js](http://scala-js.org/assets/badges/scalajs-0.6.13.svg)](http://scala-js.org)Static types for the d3 API for [Scala.js](http://www.scala-js.org/) programs.
![](https://github.com/spaced/scala-js-d3/blob/master/site/d3demo.png)
Usage
-----
Add the following to your sbt build definition:libraryDependencies += "org.singlespaced" %%% "scalajs-d3" % "0.3.4"
Enjoy the types available in `org.singlespaced.d3js`:
```
package exampleimport scala.scalajs.js
import org.scalajs.dom
import org.singlespaced.d3js.d3
import org.singlespaced.d3js.Ops._object ScalaJSExample extends js.JSApp {
def main() {
val sel=d3.selectAll("div").data(js.Array(5,2,4,6))
sel.style("width", (d:Int) => d*2 )
}```
more about [d3js.org](http://d3js.org)
See also example project [scala-js-d3-example-app](https://github.com/spaced/scala-js-d3-example-app)
- [Bar graph](https://github.com/spaced/scala-js-d3-example-app/blob/master/src/main/scala/example/ScalaJSExample.scala)
- [Histogram](https://github.com/spaced/scala-js-d3-example-app/blob/histogram/src/main/scala/example/ScalaJSExample.scala)
- [Table](https://github.com/spaced/scala-js-d3-example-app/blob/table_data_example/src/main/scala/example/ScalaJSExample.scala)Versions
--------
- [Release notes](https://github.com/spaced/scala-js-d3/releases)
- scalajs-d3 0.3.4 is for Scala.js 0.6.13+, with Scala 2.10, 2.11 and 2.12
- scalajs-d3 0.3.3 is for Scala.js 0.6.6+, with both Scala 2.10 and 2.11.
- scalajs-d3 0.2.0 is for Scala.js 0.6.5, with both Scala 2.10 and 2.11.License
-------Copyright (c) 2002-2015
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the singlespaced.org nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.