Forum Replies Created
-
Author
-
March 21, 2018 at 9:28 pm in reply to: JqxPivotGrid row and col alphabetical order JqxPivotGrid row and col alphabetical order #99343March 21, 2018 at 9:05 pm in reply to: JqxPivotGrid row and col alphabetical order JqxPivotGrid row and col alphabetical order #99342March 15, 2018 at 7:58 pm in reply to: jqxpivotgrid collapse button jqxpivotgrid collapse button #99248
Thanks!
is there any way to fix total and subtotal height ?? like row and column (columns: {dataField: value, width: 80, height: 40})
In jqx Pivot grid.Thanks!!
https://docs.google.com/document/d/1nsPpJw6IOjsJjTiu2fsVD8o-z-A0b12MbDv49fXXLYg/edit?usp=sharing
Here is the image.
I don’t know why the total height is different with other row’s cell height.
Is there anyway to block expand total height?<JqxPivotGrid
style={{ width: 800, height:400 }}
source = {pivotDataSource}
treeStyleRows = {true}
autoResize={true}
scrollBarsEnabled={false}
multipleSelectionEnabled = {true}/>
March 14, 2018 at 4:54 pm in reply to: jqxpivotgrid total height , autoresize jqxpivotgrid total height , autoresize #99211I mean if width is 20000px, how can I solve it?
March 14, 2018 at 4:44 pm in reply to: jqxpivotgrid total height , autoresize jqxpivotgrid total height , autoresize #99209Can you give a demo code?
Based on my understanding, pivotCell.value is brought from the return value of value field’s function.
For example,
If I put string type data in the value field and the function undefined, pivotcell.value is always number (the number of stirngs in the array).rows: [{ dataField: 'country', width: 190 }], columns: [], values: [ { dataField: 'date', width: 216, text: 'date' }, { dataField: 'cityName' } ]
let customCellsRenderer = function (pivotCell) { console.log(pivotCell); // console result; // {value: 2, formattedValue: "2.00", isSelected: false, pivotRow: a.jqx.j…d.pivotItem, pivotColumn: a.jqx.j…d.pivotItem} return pivotCell.value; };
rows: [{ dataField: 'country', width: 190 }], columns: [], values: [ { dataField: 'date', 'function': 'printStringValueForDate'}, { dataField: 'cityName', 'function': 'printStringValueForCityName' } ]
If I I put string type data in the value field and the customFunction(to get string values), pivotcell.value is always undefined.
customAggregationFunctions: { 'printStringValueForDate': function (values) { console.log("this is console.log for the date"); // console.log(values); return values; }, 'printStringValueForCityName': function (values) { console.log("this is console.log for the cityName"); // console.log(values); return values; } },
let customCellsRenderer = function (pivotCell) { console.log(pivotCell); // console result; // {value: undefined, formattedValue: undefined, isSelected: false, pivotRow: a.jqx.j…d.pivotItem, pivotColumn: a.jqx.j…d.pivotItem} return pivotCell.value; };
So my question is how get I render string’s list in the value on the pivot grid.
Thanks.Hi, Thanks for replying.
By the way, I have to use jqxpivotgrid not jqxgrid, so jqxgrid is not proper option for me.Can you check https://docs.google.com/document/d/1d_LXydOk3AgAlQyhrrvnat_3OGYEofvMaIVJsdcxmic/edit?usp=sharing
I tried cellrender based on your suggestion but pivotcell.value is always generated by values’s function.
If I put string type data in the value field and the function undefined, pivotcell.value is always number (the number of stirngs in the array).
If I I put string type data in the value field and the customFunction(to get string values), pivotcell.value is always undefined.customAggregationFunctions: { 'printStringValueForDate': function (values) { // console.log("this is console.log for the date"); return values; } }
let customCellsRenderer = function (pivotCell) { console.log(pivotCell); return pivotCell.value; };'
values: [
{ dataField: ‘date’, ‘function’: ‘printStringValueForDate’, width: 216, text: ‘date’, formatSettings: { align: ‘left’, prefix: ”, decimalPlaces: 2 } },
{ dataField: ‘cityName’, ‘function’: ‘printStringValueForCityName’, width: 216, text: ‘cityName’, formatSettings: { align: ‘left’, prefix: ”, decimalPlaces: 2 } }
]`<strong>Whole Code</strong>
import JqxPivotGrid from 'jqwidgets-framework/jqwidgets-react/react_jqxpivotgrid.js'; import React from 'react'; import ReactDOM from 'react-dom'; class App extends React.Component { render() { // prepare sample data let data = new Array(); let countries = [ "Germany", "France", "United States", "Italy", "Spain" ]; let dataPoints = [ "2.25", "1.5", "3.0", "3.3", "4.5" ]; let date = [ "2016-09-25 00:00:00","2016-09-25 00:00:00","2016-09-25 00:00:00","2016-09-25 00:00:00","2016-09-25 00:00:00","2016-09-25 00:00:00" ]; let cityName = ["paris", "Seoul", "SF", "Tokyo", "Busan"]; for (var i = 0; i < countries.length * 2; i++) { var row = {}; var value = parseFloat(dataPoints[Math.round((Math.random() * 100)) % dataPoints.length]); row["country"] = countries[i % countries.length]; row["value"] = value; row["date"] = date[i % countries.length]; row["cityName"] = cityName[i % countries.length]; data[i] = row; } // create a data source and data adapter let source = { localdata: data, datatype: "array", datafields: [ { name: 'country', type: 'string' }, { name: 'value', type: 'number' }, { name: 'date', type: 'string' }, { name: 'cityName', type: 'string'} ] }; let dataAdapter = new jqx.dataAdapter(source); dataAdapter.dataBind(); // create a pivot data source from the dataAdapter let pivotDataSource = new jqx.pivot( dataAdapter, { pivotValuesOnRows: false, customAggregationFunctions: { 'printStringValueForDate': function (values) { console.log("this is console.log for the date"); // console.log(values); return values; }, 'printStringValueForCityName': function (values) { console.log("this is console.log for the cityName"); // console.log(values); return values; } }, rows: [{ dataField: 'country', width: 190 }], columns: [], values: [ { dataField: 'date', 'function': 'printStringValueForDate', width: 216, text: 'date', formatSettings: { align: 'left', prefix: '', decimalPlaces: 2 } }, { dataField: 'cityName', 'function': 'printStringValueForCityName', width: 216, text: 'cityName', formatSettings: { align: 'left', prefix: '', decimalPlaces: 2 } } ] }); let customCellsRenderer = function (pivotCell) { console.log(pivotCell); return pivotCell.value; }; return ( <JqxPivotGrid style={{ width: 800, height: 400 }} source = {pivotDataSource} treeStyleRows = {true} autoResize={true} cellsRenderer={customCellsRenderer} multipleSelectionEnabled = {true} /> ); } } ReactDOM.render(<App />, document.getElementById('app'));
-
AuthorPosts