Giter VIP home page Giter VIP logo

Comments (5)

jtblin avatar jtblin commented on June 15, 2024

What do you mean by based on the type of data? You can specify the colours you want using the colours attribute, they will be applied with the same order.

from angular-chart.js.

increos avatar increos commented on June 15, 2024

Sorry I wasn't very clear

I created an array
$scope.colors = ['#FD1F5E','#1EF9A1','#7FFD1F','#68F000'];
in the markup specified colours="colors"

All the segments show up as black. I am sure I am doing something wrong..

from angular-chart.js.

jtblin avatar jtblin commented on June 15, 2024

The colours need to be an object as follow (you don't need to use rgba colour, html colour is fine too):

    {
      fillColor: "rgba(151,187,205,0.2)",
      strokeColor: "rgba(151,187,205,1)",
      pointColor: "rgba(151,187,205,1)",
      pointStrokeColor: "#fff",
      pointHighlightFill: "#fff",
      pointHighlightStroke: "rgba(151,187,205,0.8)"
    }

I'll probably make a change soon to accept a string and construct a default colour object.

from angular-chart.js.

increos avatar increos commented on June 15, 2024

Thank you. That works!! It will be nice however to be able specify strings but not a showstopper. Kind of like the way it is specified in the Chart.js docs, but through the attribute way i.e the way you have implemented, data / legend/seres. which I found to be more elegant than the other angular chart.js libraries. Keep up the great work

var data = [
    {
        value: 300,
        color:"#F7464A",
        highlight: "#FF5A5E",
        label: "Red"
    },
    {
        value: 50,
        color: "#46BFBD",
        highlight: "#5AD3D1",
        label: "Green"
    },
    {
        value: 100,
        color: "#FDB45C",
        highlight: "#FFC870",
        label: "Yellow"
    }
]

from angular-chart.js.

jtblin avatar jtblin commented on June 15, 2024

Done, you can now pass hex strings as per your example ;)

$scope.colors = ['#FD1F5E','#1EF9A1','#7FFD1F','#68F000'];

from angular-chart.js.

Related Issues (20)

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.