GithubHelp home page GithubHelp logo

compose-chart's Introduction

Jetpack compose multiplatform charts

Jetpack compose charts with support android and desktop targets.

Philosophy

All charts

  • Work the same on desktop and android targets
  • Do not require any pixel work. All settings use shape related dimensions (Percents, Degrees, etc)
  • Uses standard compose library. No external dependencies required

Charts

Chart usage example could be found under /example/target directories

PieChart

How it looks

How to use: Add this code to your gradle repositories declaration

maven {
    url = uri("https://maven.pkg.github.com/MEJIOMAH17/compose-chart")
    credentials {
        username = "<yourUsername>"
        password = "yourGithubToken"
    }
}

Add this line to your gradle dependencies

 implementation("com.github.mejiomah17.compose.chart:pie:0.1.0-SNAPSHOT")

Add code to your @Composable function:

   PieChart(
               // size of center hole in percents from total chart size
               holeSize = Percent(holeSize),
               // list of sectors to draw
               sectors = listOf(
                   PieChartSector(
                       // weight of this sector. Size of sector at chart depends on weight/totalWeight
                       weight = 4,
                       color = Color(64, 89, 128),
                       // Jetpack compose painter. Highly recommended to use vector painters here.
                       icon = yourPainter,
                       // Size of icon in percents of sector size
                       iconSizeFromSector = Percent(40)
                   ){
                       // this code will be called on sector click
                   }
                   
               ),
               // empty space between sectors in degrees
               spaceBetweenSectors = Degrees(1),
               // Jetpack compose animationSpec
               animationSpec = tween(5500),
               modifier = Modifier.align(Alignment.Center)
    )

Contribution

Any contribution is highly welcome. Don't shy for any pull request or issue.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.