jQWidgets Forums
Forum Replies Created
-
Author
-
April 30, 2014 at 12:52 pm in reply to: Chart Text display in vertical vertical alignment Chart Text display in vertical vertical alignment #53773
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.
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.January 20, 2014 at 6:09 pm in reply to: version 2.7 does not support Chrome 32 version 2.7 does not support Chrome 32 #48127Hi,
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 -
AuthorPosts