Giter Club home page Giter Club logo

Comments (4)

isabellachen avatar isabellachen commented on May 21, 2024 1

Thank you for spelling it out for me.

from echarts.

MatthiasMert avatar MatthiasMert commented on May 21, 2024

You can specify start and end of the markline yourself as the various examples in the documentation suggest.

Demo

from echarts.

isabellachen avatar isabellachen commented on May 21, 2024

Using the example, the markLine disappears

image

In the original example:

image

I had two lines, one average line and another set at to a yAxis of 12. I suppose to use the items in the markLine array with item at 0 as start and 1 as end, I would need another markLine to render the line currently at yAxis: 12

However, it is puzzling why the line does not render at all when using the example code

Setting the yAxis to 12 creates 2 lines
image

from echarts.

MatthiasMert avatar MatthiasMert commented on May 21, 2024

You are missing one set of brackets.

In my example code

[
    {yAxis: 'average', x: '10%', name: 'average'},
    {yAxis: 'average', x: '90%'}
]

specifies a line between two points which have to be encapsulated into '[' brackets.

So the correct syntax is

data: [
    [    // <-- brackets
        {yAxis: 'average', x: '10%', name: 'average'},
        {yAxis: 'average', x: '90%'}
    ]    // <-- bracktes
]

instead of your

data: [
    {yAxis: 'average', x: '10%', name: 'average'},
    {yAxis: 'average', x: '90%'}
]

from echarts.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.