-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
set row value from data #113
Comments
It will not be possible to build such a table with this library unfortunately. The types of tables you would be able to build would have, say, the values of the Vendor attribute down the side like you do here, but then the values of, say, the CNT_CLIENT attribute across the top, and a single aggregated value in each cell. What you are looking for would involve having multiple aggragators, which is an often-request feature. |
how many number of record pivottable could handle so count work fine without performance issue?? how about implement #30 ? |
I doubt that #30 will be implemented particularly soon, to be honest. Regarding the performance question, it depends on the nature of the data, how you're loading it and your hardware, but I would say up to a few tens of thousands of rows is safe, and a hundred thousand is close to the limit. Your mileage may very. |
ok, but display so much data would bad in load data.. thanks |
Hi, I'm a bit confuse about display data in pivottable
rows: [
{
NO: "1",
NAME: "2BKS000238/2BKS-JTN0101-0810BI",
VENDOR: "Research In Motion",
CNT_CLIENT: "11",
HIT_AUTH: "25",
HIT_ASOC: "0",
CLIENT_AUTH: "11",
CLIENT_ASOC: "0"
},
{
NO: "2",
NAME: "2BKS000238/2BKS-JTN0101-0810BI",
VENDOR: "Liteon",
CNT_CLIENT: "1",
HIT_AUTH: "1",
HIT_ASOC: "0",
CLIENT_AUTH: "1",
CLIENT_ASOC: "0"
},
{
NO: "3",
NAME: "2BKS000238/2BKS-JTN0101-0810BI",
VENDOR: "Unknown",
CNT_CLIENT: "5",
HIT_AUTH: "5",
HIT_ASOC: "0",
CLIENT_AUTH: "5",
CLIENT_ASOC: "0"
}
]
is it possible to create table like this
----------------------------CNT_CLIENT | HIT_AUTH | HIT_ASOC | CLIENT_AUTH | CLIENT_ASOC
Research In motion 11 | 25 | 0 | 11 | 0
Liteon 1 | 1| 0 | 1 | 0
Unknown 5 | 5 | 0 | 5 | 0
The text was updated successfully, but these errors were encountered: