7,449 questions
0 votes
0 answers
26 views
Power BI Gantt Chart line colours
Is it possible to change the line colors within a project? I can have a different color for each project but I want to color child items based on a status.
0 votes
1 answer
174 views
Create a line type in LaTeX/TikZ as -\- and |-| that goes between two points [closed]
It is usually a problem to draw stepped lines between two points (A) -- (B). I created a macro to do it, but it would be more elegant if there was a "line type" that will take care of it, ...
2 votes
3 answers
103 views
Drawing a vertical line in Gnuplot and adding a key/legend to it
reset set encoding utf8 set terminal pdfcairo size 20cm,20cm font "STIX Two Math, 22" enhanced set output "straight-lines.pdf" # set grid linetype 0 linewidth 1 dashtype 3 ...
0 votes
1 answer
63 views
Is there a way to draw a dashed line on a MQL5 chart that contains two colors?
I have an indicator that draws dashed lines in red or blue as needed for support and resistance levels. However, I have a difficult time seeing the lines on the black background charts, so I would ...
1 vote
0 answers
41 views
LINE Login Kit same channel for multiple regions
Line says for a different region, you need to create new channel. But during testing, when region is configured as Japan, we can login from multiple other regions. And ChatGPT is also saying it's OK. ...
0 votes
1 answer
43 views
TradingView automatically draw segments between two segments
I would like to automatically draw quarter and midpoint lines between two lines already drawn manually. How can I retrieve information about the two lines already drawn ? Exemple The blue lines are ...
0 votes
0 answers
31 views
How to align line with many vertices?
I am trying to align a user-created centerline feature with the authoritative version of that same line. I need to keep the start and end points of the line sections generally where they are - aligned ...
0 votes
1 answer
54 views
How to fix line issue when clipping in SVG?
As you can see in the image clipping doesn't connect the lines perfectly due to the overlap from the top oval. <svg width="400" height="200" xmlns="http://www.w3.org/2000/svg"> <!-- Define ...
1 vote
0 answers
61 views
Determine starting point through N bars for future line drawing Pine Script
Can't draw a line (line2) from the open bar where line1 ends... line2 starts at the right bar, but the starting point is not the same - you need to get open What I do wrong. The presented script is ...
2 votes
1 answer
90 views
Draw lines with different colors in single call in R [closed]
The polygon() help says When multiple polygons are produced, the values of density, angle, col, border, and lty are recycled in the usual manner. The lines() help says For type = "h", col ...
0 votes
0 answers
30 views
VS Code theme extension: editorIndentGuide.activeBackground not working for all indentation levels
my vue2 code I've already set it up editorIndentGuide. ActiveBackground1~editorIndentGuide. ActiveBackground6 attribute, Also set the editorIndentGuide. Background1~editorIndentGuide. Background6 ...
0 votes
1 answer
321 views
How to render a dashed line in Victory Native XL?
I need to render a dashed line in a cartesian chart component of Victory-Native Xl. But I have found no clue on how to do that in the documentation. Currently I can render a continuous line, but my ...
1 vote
0 answers
143 views
Issue with LINE Chatbot Rich Menu
I developed a LINE chatbot using Google Apps Script and encountered an issue while working with the rich menu. After generating three menus, I attempted to switch between them using richMenuSwitch. I ...
0 votes
1 answer
65 views
Is it possible to synchronize y-axis of three different stacked column plots in Power BI?
I have a Power BI page in which I want to visualize installed capacity of 3 scenarios at the same time with 3 different plots. I have filtered scenario to visualize results in each plot. However, the ...
6 votes
4 answers
391 views
How to efficiently check if two line segments intersect?
I've referenced this answer (has an interactive desmos visualization) in a related question to develop this Javascript function: function doLineSegmentsIntersect(a1X, a1Y, a2X, a2Y, b1X, b1Y, b2X, b2Y)...