question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Issue with attributes SIDES of TABLE or TD

See original GitHub issue

Hi Team,

I encounter an issue (minor) with PlantUML 2.24.0 under PhpStorm 2020.1. The value LR or RL will not work. Their is no issue if T or B is used with.

Please find below a screenshot showing the issue. For the issue I add empty cell to separated cases :

image

Source Code :

@startuml
digraph ZHUM_AUTO {
    // Global Configuration
    node [
        shape=box
    ]

    // Nodes Configurations
    Manual [
        shape=none; label=<<table border="0" cellborder="1" cellspacing="0">
        <tr><td bgcolor="red">    </td><td> Manuel </td></tr>
        </table>>;
    ];
    Auto [
        shape=none; label=<<table border="0" cellborder="1" cellspacing="0">
        <tr><td bgcolor="green">    </td><td> Auto </td></tr>
        </table>>;
    ];
    ME21N [
        shape=none; label=<<table border="0" cellspacing="0">
        <tr>
            <td bgcolor="red" border="1"> 1 </td>
            <td border="1"> Create Order </td>
            <td border="1"> ME21N </td>
        </tr>
        <tr><td colspan="3" align="left" border="1" sides="LRT"> A </td></tr>
        <tr><td colspan="3" align="left" border="0" sides="">   </td></tr>
        <tr><td colspan="3" align="left" border="1" sides="L"> L Alone </td></tr>
        <tr><td colspan="3" align="left" border="0" sides="">  </td></tr>
        <tr><td colspan="3" align="left" border="1" sides="R"> R Alone </td></tr>
        <tr><td colspan="3" align="left" border="0" sides="">  </td></tr>
        <tr><td colspan="3" align="left" border="0" sides="RL"> RL Issue </td></tr>
        <tr><td colspan="3" align="left" border="0" sides="">  </td></tr>
        <tr><td colspan="3" align="left" border="1" sides="LRT"> RLT No issue </td></tr>
        <tr><td colspan="3" align="left" border="0" sides="">  </td></tr>
        <tr><td colspan="3" align="left" border="1" sides="LRB"> RLB No Issue </td></tr>
        <tr><td colspan="3" align="left" border="0" sides="">  </td></tr>
        <tr><td colspan="3" align="left" border="1" sides="LRB"> B </td></tr>
        </table>>;
    ];
    ME29N [];
    MIGO [];
    ZAUD [];
    ZAUT [];

    // Nodes Links
    subgraph cluster_legend {
        label = "Legend";
        Manual Auto;
    }

    subgraph cluster_YMM_INBOUND_AUTO {
        label = "YMM_INBOUND_AUTO";
        AB
    }


}
@enduml

This Tool indicates that must works :

GraphvizOnline

image

Thanks a lot for your work !

Kindly Regards, Nicols D.

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:5

github_iconTop GitHub Comments

1reaction
neooblastercommented, May 7, 2020

Hi @krasa ,

You can find latest version (Automatically Build) here. You have to select your OS/Release and then go in Artefact to get .exe file or zip.

https://ci.appveyor.com/project/ellson/graphviz-pl238

Edit : I didn’t notice you found the right url 😉

1reaction
krasacommented, May 6, 2020

That’s nuts, I was running 2.38 too.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Issue with attributes SIDES of TABLE or TD - PlantUML Q&A
I encounter an issue (minor) with PlantUML 2.24.0 under PhpStorm 2020.1. The value LR or RL will not work. Their is no issue...
Read more >
<td>: The Table Data Cell element - HTML - MDN Web Docs
This attribute specifies how a text is vertically aligned inside a cell. Possible values for this attribute are: baseline : Positions the text ......
Read more >
Tables in HTML documents
Table rows: The TR element; Table cells: The TH and TD elements ... This attribute specifies which sides of the frame surrounding a...
Read more >
HTML | <td> align Attribute
The HTML <td> align attribute is used to set the horizontal alignment of text content. ... < table width = "500" border =...
Read more >
Table Cellpadding Is Outdated HTML: Get The New CSS ...
A numeric value was specified and represented the amount of pixels that should be used on all four sides of every <td> element...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found