jQWidgets Forums

Forum Replies Created

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

  • Anil Kumar
    Participant

    Hi,
    Peter thank you very much for support. But one more problem is remaining.
    I want to display text on very beginning of graph see image which is attached with link. (135, 145, 90, 66———-70 all text is top of graph). Not display on cross place.
    text on top

    in reply to: Display 0 in Bar chart Display 0 in Bar chart #53725

    Anil Kumar
    Participant

    Hi,
    I want to display text of chart vertical (please click link for more explanation). Look on image GS,GR,L/GX,L/GX2,………with the vertical alignment. I want like this image.

    in reply to: Display 0 in Bar chart Display 0 in Bar chart #53724

    Anil Kumar
    Participant

    Hi,
    I want to display text of chart vertical (please click link for more explanation). Look on image GS,GR,L/GX,L/GX2,………with the vertical alignment. I want like this image.

    chart text display with virtical mode


    Anil Kumar
    Participant

    Hi,

    I am having problem with nested Json Data.

    Here is My Code below. Please Suggest me.

    ` var source = {
    datatype: “json”,
    datafields: [{ name: ‘CustomerID’ },
    { name: ‘CustomerCode’ },
    { name: ‘FirstName’ },
    { name: ‘MiddleName’ },
    { name: ‘LastName’ },
    { name: ‘Creator’, map: ‘CreatorInfo>Creator’ },
    { name: ‘CreationDate’, map: ‘CreatorInfo>CreationDate’, type: ‘date’ },
    { name: ‘JoiningDate’, type: ‘date’ },
    { name: ‘Amount’},
    { name: ‘PlanName’, map: ‘Planinfo>PlanName’ }

    ],
    localdata: Customer.GridData
    };

    var dataAdapter = new $.jqx.dataAdapter(source);

    $(“#jqxGrid”).jqxGrid({
    width: ‘99.5%’,
    source: dataAdapter,
    theme: PMBL.Common.theme,
    columnsresize: true,
    filterable: true,
    sortable: true,
    pageable: true,
    selectionmode: ‘singlerow’,
    groupable: false,
    enabletooltips: true,
    autoshowfiltericon: true,
    keyboardnavigation: true,
    pagesize: 10,
    height: 310,
    columns: [

    { text: ‘CustomerID’, datafield: ‘CustomerID’, width: ‘%’ },
    { text: ‘Customer Code ‘, datafield: ‘CustomerCode’, width: ‘15%’ },
    { text: ‘First Name ‘, datafield: ‘FirstName’, width: ‘15%’ },
    { text: ‘Middle Name ‘, datafield: ‘MiddleName’, width: ‘15%’ },
    { text: ‘Last Name ‘, datafield: ‘LastName’, width: ‘15%’ },
    { text: ‘Joining Date ‘, datafield: ‘JoiningDate’, width: ‘15%’, cellsformat: ‘MM/dd/yyyy’ },
    { text: ‘Plan Name ‘, datafield: ‘PlanName’, width: ‘15%’ },
    { text: ‘Amount ‘, datafield: ‘Amount’, width: ‘10%’ }
    ],
    ready: function () {
    $(“#jqxGrid”).jqxGrid(‘hidecolumn’, ‘CustomerID’);
    $(‘#jqxGrid’).jqxGrid(‘selectrow’, 0);
    $(‘#hdnSelectedID’).val(($(‘#jqxGrid’).jqxGrid(‘getcellvalue’, 0, “CustomerID”)))
    }
    });`

    Thanks
    Anil

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