Need a special offer?Find out if your project fits.
+

General questions about Pivot Grid feaures

Answered
cwoo asked on November 30, 2017

We are evaluating Pivot Table and have the following questions:

  1. If the data is not in the format expected by the pivot table, do I have to convert the data up front, or there's a way to do that via the API?
  2. Does it support the concept of cell renderer where I can format the data using a custom function? Same question with CSS styling.
  3. Is there a limit of maximum number of records supported?
  4. Does it support thousands of columns?

Thanks.

5 answers

Public
Tanya Gryshko Tanya Gryshko Flexmonster December 1, 2017

Hello,
Thank you for your interest in Flexmonster Pivot.
1. Our component supports data in certain formats and your data needs to be already converted. Please specify your data source and we will provide you with some useful tips.
2. Yes, Flexmonster allows formatting the data using a custom function. This demo shows how the value of each cell can be replaced with the image. Our blog post called Grid customization and styling beyond CSS will demonstrate you several examples of possible CSS styling. Please have a look at it.
3.- 4. Our component can handle as much data as your browser can. There are no limitations on the number of records or columns.
I hope you would find my answers useful. Please ask me in case of other questions.
Regards,
Tanya

Public
cwoo December 1, 2017

Thanks for your response. The data we have is in json. but can be in arbitrary format.  For example,
var records=[
{fieldValues:{a:'a0', b:'b0'},
{fieldValues:{a:'a1', b:'b1'}
]
I am wondering if the values can be processed as part of the pivot table rendering mechanism so that we don't have to process the data upfront, especially for large data set.
Thanks.
 
]

Public
Dmytro Zvazhii Dmytro Zvazhii Flexmonster December 4, 2017

Hi! 
Thank you for the question. Please have a look at our documentation page: https://www.flexmonster.com/doc/json-data-source. There is an example of the JSON format we support. If your format matches the suggested one, then there is no need to make any manipulations with your data. Also, please note that you can specify the types of your data fields in the meta-object. Here is an example: https://www.flexmonster.com/doc/managing-data-presentation-json.

Please let us know if you have any additional questions.

Public
cwoo December 5, 2017

If I'm not using the built-in formatting options provided by the pivot grid, is there a way to format a cell value based on custom function? I looked at the cell parameter passed in the customzeCellFunction, and it doesn't seem to have a way to access/update just the cell value alone. "cell.text" returns the full html in the cell. Also, is there a way to access the dom node reference to the cell being rendered?
 
Thanks.

Public
Tanya Gryshko Tanya Gryshko Flexmonster December 6, 2017

Hello,
Thanks for your reply.
We would like to mention that customizeCellFunction is used to change data representation on the grid in Flexmonster Pivot. To replace the values on the grid please use 'cell.text' parameter of customizeCellFunction. It returns the text of the element which may also contain HTML. If your cells contain only the text, you can just replace the values. And in case there was some HTML, you would be able to replace just the text with the help of regular expressions. Here is the sample demonstrating one of the possible ways to handle the situation when the cell contains HTML: http://jsfiddle.net/flexmonster/q1gtwj48/.
Please let me know if you have questions.
Regards,
Tanya

Please login or Register to Submit Answer