Giter VIP home page Giter VIP logo

Comments (7)

Koooooo-7 avatar Koooooo-7 commented on May 27, 2024

Hi @CaledoniaProject , if you need the pure JSON options directly.
You need call the bar.Validate() before bar.JSON() since the XYAxis config is post processed in Validate().

a := barBasic()
a.Validate()
b, _ := json.Marshal(a.JSON())

from go-echarts.

CaledoniaProject avatar CaledoniaProject commented on May 27, 2024

Interesting,

  1. why won't go-echarts call Validate() inside JSON()
  2. the sample code does not call Validate() and it still works, why is that?

@Koooooo-7

from go-echarts.

Koooooo-7 avatar Koooooo-7 commented on May 27, 2024
  1. why won't go-echarts call Validate() inside JSON()

go-echarts does call the Validate() before render it to HTML, otherwise, the options gonna be broken as you mentioned above either.

  1. the sample code does not call Validate() and it still works, why is that?

TBH, at the very beginning, the Validate() seems a validation function, somehow it contains some post process stuff also.
And the JSON() method is made for template render, it does not meant to be an open api for now.

from go-echarts.

CaledoniaProject avatar CaledoniaProject commented on May 27, 2024

@Koooooo-7 Looks like the API needs some refactoring. So if it's not meant to be a public API, should I use json.Marshal() after Validate() ?

from go-echarts.

Koooooo-7 avatar Koooooo-7 commented on May 27, 2024

@Koooooo-7 Looks like the API needs some refactoring. So if it's not meant to be a public API, should I use json.Marshal() after Validate() ?

Personally I think works as expect for now, because go-echarts aims to generate echarts styling charts, not being designed to generate echarts' options (and actions, events...etc). so, there is no the sort of export api for getting individual configs for echarts.
The JSON() object more like the mid-product to go-echarts.
If you do wanna the JS options, copying from the generated bar HTML is more reasonable to me.
This way below just plays a trick as a workaround.

a := barBasic()
a.Validate()
b, _ := json.Marshal(a.JSON())

from go-echarts.

CaledoniaProject avatar CaledoniaProject commented on May 27, 2024

@Koooooo-7 My situation is a golang server + VUE frontend, I use go-echarts to avoid defining the options structure in golang. I think it's a common usage scenario. It works for now :-)

from go-echarts.

Koooooo-7 avatar Koooooo-7 commented on May 27, 2024

@Koooooo-7 My situation is a golang server + VUE frontend, I use go-echarts to avoid defining the options structure in golang. I think it's a common usage scenario. It works for now :-)

Glad to hear that, it should work in basic charts for now.
I think go-echarts could consider provide some export api in future for echarts options if it needs.

from go-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.