forked from fin-hypergrid/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
small fix to background selection color default
- Loading branch information
1 parent
651ef70
commit 335f0ce
Showing
10 changed files
with
69 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
T must be a keytable containing at least two columns in addition to the keys, f and g. | ||
|
||
At least one of f and g must be a groupable type (see below). | ||
|
||
The behavior of the treetable is controlled by a set of global variables in the root: | ||
|
||
/ the underlying data table, e.g. | ||
T:([k:til 10]f:10?1.;g:10?`a`b`c) | ||
|
||
/ qtypes | ||
Q::.tt.qtype T | ||
|
||
/ count of Z | ||
N::count Z | ||
|
||
/ visible order | ||
F::cols[T]except G | ||
|
||
/ group by | ||
G:() | ||
|
||
/ groupable | ||
H::exec c from meta get T where t in"bhijspmdznuvt" | ||
|
||
/ invisible (can be rolled up) | ||
I::cols[T]except G,F | ||
|
||
/ rollup functions | ||
A:()!() | ||
|
||
/ instruction state | ||
P:([n:enlist(0#`)!0#`]v:enlist 1b) | ||
|
||
/ rows -> gui | ||
R:`start`end!0 100 | ||
|
||
/ sorts (a,d) | ||
S:()!() | ||
|
||
Example settings (used in the demo): | ||
|
||
/ group on these columns | ||
G:`sector`trader`strategy | ||
|
||
/ roll up these columns | ||
F:`holdingId`symbol`price`quantity`date`time | ||
|
||
/ override default rollup with avg | ||
A[`price]:(avg;`price) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters