Giter VIP home page Giter VIP logo

Comments (6)

greghub avatar greghub commented on May 29, 2024

Hi @yancorrea1995 , thanks for your interest!
could you please clarify by "setting separately"?
Currently, it is possible to set labels and sub-labels (legends):

data: {
    labels: ['Impressions', 'Add To Cart', 'Buy'],
    subLabels: ['Direct', 'Social Media', 'Ads'],
    ...
}

What would be wish to set the values?

from funnel-graph-js.

yancorrea1995 avatar yancorrea1995 commented on May 29, 2024

Hi Greg!

During mouse hover, add the possibility of customizing the text, so that it is different from the legend in the bottom of funnel.
export

from funnel-graph-js.

yancorrea1995 avatar yancorrea1995 commented on May 29, 2024

And, if possible, add an option to hide the zero values in the mouse hover. Example (hide "Idea 02: 0" because the "0" is not a necessary information. That will make the Funnel more clean and easy to view.

from funnel-graph-js.

lordplagus02 avatar lordplagus02 commented on May 29, 2024

Agreed with removing zeroes for usability, but having to adapt the data to remove subsets with no values made for some efficient backend code 😛

from funnel-graph-js.

yancorrea1995 avatar yancorrea1995 commented on May 29, 2024

Don't need to remove the values, just hide. Who to use chooses whether or not to hide with a flag (option) in the settings of the funnel.

from funnel-graph-js.

maitsa avatar maitsa commented on May 29, 2024

I made a workaround to hide empty sublabel values. The last "if" hide also results with only 1 value, to avoid redundancy with main label.

$('div.svg-funnel-js ul.segment-percentage__list').each(function (i, list) {
    list = $(list);
    var listItems = list.find('span.percentage__list-label');
    listItems.each(function (j, elem) {
        elem = $(elem);
        if (elem.text().startsWith("0")) {
            elem.closest('li').addClass('hidden');
        }
    });

    if (list.find('li:not(.hidden)').length <= 1) {
        list.closest('.label__segment-percentages').addClass('hidden');
    }        
});

from funnel-graph-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.