Wenli Zhang

Results 287 comments of Wenli Zhang

I'm not sure how to make it automatically avoid overlapping because all components (grid, legend, title, and etc.) use absoulute positions (left, right, top, bottom, width, height) and we cannot...

If you set these positions like `grid.left/right/top/bottom/width/height`, you can keep a reference to your option and get that value. Or, you can use `chart.getOptions()` to get the merged options with...

I believe this has been fixed in the coming version. @pissang Please have a check.

@pe-2 Thanks for your suggestion. Although we do not have something like this for other options, theoretically speeking, this could also be a solution. I would suggest comparing each of...

@zz5840 Thanks for the update. I want to clearify that if `linePieces.index` is the index of the `data`? I'm not sure what does `index: [0, 2, 4]` mean? Does this...

If the index means the ordinal number of the lines, then you must be careful because when the data is dense enough with line series, the data item (empty circles)...

@zz5840 Thanks for the clarification. Just a few updates on the API design: ```ts export interface LineSeriesOption { lineSegments?: LineSegmentsOption[], nullItemStyle?: {...}, // item style for null data nullLineStyle?: {...},...