Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • dyndoc

    I try to export a graph to a html,but i failed.The html could be opened,but the graph is not shown.I cannot figure it out.Below is my code:
    <<dd_do>>
    cd E:\Projects\Germplasm\Wheat\Data\Clndta\Wheat
    use Trait\1106wheat_trait_nofreeze_unique,clear
    scatter yield breedingyear_new_c, mcolor(blue%50)
    <</dd_do>>
    <<dd_graph:sav("yield.svg") graphname(yield) alt("scatter yield breedingyear_new_c") replace height(400) >>


  • #2
    I have no idea about dyndoc, but I suggest you give your graph the same name that you specified with graphname in the dd_graph block and see if that helps.
    Code:
    scatter yield breedingyear_new_c, name(yield) mcolor(blue%50)

    Comment

    Working...
    X