Giter VIP home page Giter VIP logo

Comments (4)

netil avatar netil commented on May 14, 2024

For pie/donut types, with data.order can be rendered in two forms.

  • default (which is sames as "desc")
  • null

image

The order function, just works for non-arc types.

If you need data order appeared in some determined way, bind the data in that order.
If you need that pie to appeard in different angle, make some function for that as:

function rotate(deg) {
    chart.internal.svg
        .style("transformOrigin", "center")
        .style("transform", "rotate("+ deg +"deg)")
        .selectAll(".bb-chart-arc text")
        .each(function() {
            var node = d3.select(this);
            node.attr("transform", node.attr("transform") + " rotate(-"+ deg +")");
        });
}

With that function, calling rotate(90) will get the result as below.
image

from billboard.js.

DigitalWheelie avatar DigitalWheelie commented on May 14, 2024

This is great, thank you.
I'm having problems with showing very small chart values:

data: {
  columns: [
    ["Sponge ", 88],
    ["Flying Trapeze ", 8],
    ["Fueled Reamers ", 2],
    ["Collaborations With Triumphs ", 1],
    ["Other Venues ", 1]
  ]
}

screen shot 2018-11-11 at 1 15 24 pm

CodePen

Rotating the chart may help. Specifying the order of slices may help as well, but I'm not sure how to "bind the data in that order." Can you give a specific example, some code, or offer some detail as to how to do this?

Many thanks!

from billboard.js.

DigitalWheelie avatar DigitalWheelie commented on May 14, 2024

Actually, I'll extend this to say I'd love if pie chart value sorting, and/or pie chart initial rotation were built-in features/capabilities.

from billboard.js.

netil avatar netil commented on May 14, 2024

fixed by 1.9.0 release.

from billboard.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.