jQWidgets Forums

jQuery UI Widgets Forums Grid Pivot Grid Chart

This topic contains 3 replies, has 2 voices, and was last updated by  admin 3 years, 4 months ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
  • Pivot Grid Chart #121372

    atomic
    Participant

    Hi Guys,

    I am using pivot grid and it works fine.
    I have one small problem, seems setting row height isn’t possible in jqxPivotGrid?

    The other issue I have is I would like to render jqxChart based on data presented in jqxPivotGrid.
    Could you please provide hint or solution how I could implement this one.

    Thank you.

    Pivot Grid Chart #121374

    admin
    Keymaster

    Hi atomic,

    For setting a row height did you use the setRowHeight method? It requires two parameters – the row object and the height of the row.

    Best regards,
    Peter Stoev

    jQWidgets Team
    https://www.jqwidgets.com/

    Pivot Grid Chart #121384

    atomic
    Participant

    hi Peter,

    No I haven’t, I cannot find setRowHeight method in Pivot Grid documentation. Could you please direct me to full documentation page.

    Do you have any hint on second question. Is there a way to get data from rendered JQX Pivot Grid, so I could use it to produce JQX chart.
    I would like to provide visualisation (JQX Chart) based on displayed data in JQX pivot Grid.

    Thanks so much.

    Best

    Pivot Grid Chart #121435

    admin
    Keymaster

    Hi atomic,

    The data in the Pivot Grid and Chart is in different format. It cannot be used directly and we do not have a Pivot Chart component which is usually used in combination with a Pivot Grid.

    Here’s a simple example how to set height:

    
                const rows = $('#pivotGrid').jqxPivotGrid('getPivotRows');
                rows.items[0].hierarchyItemHeight = 100;
                $('#pivotGrid').jqxPivotGrid('refresh');

    Best regards,
    Peter Stoev

    jQWidgets Team
    https://www.jqwidgets.com/

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

You must be logged in to reply to this topic.