jQWidgets Forums

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts

  • DXC13
    Participant

    Manipulating the DOM does seem to work

    https://jsfiddle.net/2tu83dnf/

    Apply the series in Legend order then move the DOM section to the top of the parent.

    var target = $(“path[stroke=’#229954′]”);
    var container = $(“path[stroke=’#229954′]”).parent();
    $(container).prepend(target);

    The only requirement is being able to select the correct <path> but in this case since all the colors are known I could select it by the stroke color.
    Works with animation also.


    DXC13
    Participant

    Here is an example

    https://jsfiddle.net/gkqL29m0/

    I need SeriesD to be in the background of the chart (as in the example) but I also need it to be listed last in the legend.

    The way I see it there are 2 options. Reorder the legend … which sounds like that is not possible at this time. Or be able to push the SeriesD graphic to the background (sort of assigning a z-index or render order)

    I may have to see if I can manipulate the DOM on refresh.

    in reply to: jqxInput unfiltered dropdown jqxInput unfiltered dropdown #98541

    DXC13
    Participant

    Thanks for the quick response.

    I’ll probably just build the drop down independently and supply it with data from the DataAdapter LoadComplete callback.

    P.S. – it might be worth considering adding an ALL feature to the SearchMode. I can think of a few situations where that might be useful.

Viewing 3 posts - 1 through 3 (of 3 total)