Replies: 18 comments 36 replies
-
The current documentations [undergoing 📝 ] is available at https://github.com/sehilyi/geminid/wiki/Docs Some comments after trying the basic:
|
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
For each subsection (e.g., "Point"), we can cover the following contents:
|
Beta Was this translation helpful? Give feedback.
-
Some questions:
|
Beta Was this translation helpful? Give feedback.
-
Another question: |
Beta Was this translation helpful? Give feedback.
-
Hi @sehilyi, I am trying to make a table (like the table below) in the wiki docs.
Since you are more familiar with the code base, would you mind helping me fulfill the skeleton of the table (if you think this table is useful)? |
Beta Was this translation helpful? Give feedback.
-
I am not very sure about the |
Beta Was this translation helpful? Give feedback.
-
In the current grammar, users define the layout of a track using |
Beta Was this translation helpful? Give feedback.
-
One more thing, what do you think about adding a render button in the online editor. The current online editor renders whenever there is a change in the left side. Sometimes, the whole webpage crashes due to some rendering error while I am modifying the configuration. That is a little bit annoying. |
Beta Was this translation helpful? Give feedback.
-
Hi @wangqianwen0418, FYI, you can now generate unique urls (#51) to display custom specs in the editor. This can be useful when providing links for individual examples (i.e., "Open the example in online editor" in the current docs). To obtain the url, edit the spec as you want and click on the button on the top-right corner in the editor. Then, a unique url will be copied to your clipboard. The example url looks like this: |
Beta Was this translation helpful? Give feedback.
-
Some question about many thanks~ |
Beta Was this translation helpful? Give feedback.
-
This seems to be a small bug. The annotation of the y axis is wired. Should I start an issue? |
Beta Was this translation helpful? Give feedback.
-
I am a little confused about |
Beta Was this translation helpful? Give feedback.
-
@sehilyi , when you are convenient, would you mind taking a look at the current wiki documentations? You comments are welcome! I haven't start writing the section It would be great if you can point me to some examples of the Do you think we have some examples of using |
Beta Was this translation helpful? Give feedback.
-
@wangqianwen0418 I've briefly looked into the documentation and made some changes, but it looks good! I can see that people can already understand many parts of the grammar by reading the docs. Thinks we may need to consider adding in the future would be (1) describing visual parameters for circular layouts (e.g., Also, as documentation covers many parts already, it would be worth discussing about static sites at some point. |
Beta Was this translation helpful? Give feedback.
-
Do you think the triggerCondition interface can be refactored in the following way: interface TriggerCondition {
operation: LogicalOperation,
measure: "width"|"height"|"zoomLevel",
threshold: number|"|xe-x|",
target: 'track' | 'mark' | 'superpose',
conditionPadding?:number,
transitionPadding?:number
} this interface looks more clear to me. |
Beta Was this translation helpful? Give feedback.
-
Just to clarify, the current dataTransform only supports three types of filters: Another question, do you think it makes sense to assign |
Beta Was this translation helpful? Give feedback.
-
Just to clarify, does this mean that csv data can only be loaded from url while json data can only be loaded from inplace json value? export interface CSVDataGosling extends DataDeepGoslingCommon {
type: 'csv';
url?: string;
separator?: string;
// experimental
headerNames?: string[];
chromosomePrefix?: string;
longToWideId?: string;
}
export interface JSONDataGosling extends DataDeepGoslingCommon {
type: 'json';
values?: Datum[];
} Also, could you point me to some examples using JSON data? |
Beta Was this translation helpful? Give feedback.
-
The thread of this discussion will cover the questions and comments around the geminid grammar to make documentation.
Beta Was this translation helpful? Give feedback.
All reactions