Replies: 3 comments
-
hey @Xhale1 thanks for checking out
const CLIP_INDICATOR_WIDTH = 13;
const CLIP_INDICATOR_HEIGHT = 7;
<svg
width={CLIP_INDICATOR_WIDTH}
height={CLIP_INDICATOR_HEIGHT}
viewBox={`0 0 ${CLIP_INDICATOR_WIDTH} ${CLIP_INDICATOR_HEIGHT}`}
fill="none"
>
<path d="M1 6L4.66667 2.25L8.33333 4.75L12 1" stroke="white" strokeWidth="1.5" />
</svg> (note there is no broken axis, just indicating the bar goes far above the visible space) |
Beta Was this translation helpful? Give feedback.
-
I don't think this is an issue with |
Beta Was this translation helpful? Give feedback.
-
Interesting Idea! I don't think D3 has generic support for graph break in the mid of axis, because when you apply Some thinking:
|
Beta Was this translation helpful? Give feedback.
-
Is there a method for creating graph breaks? For example if you have a bar graph with one particularly large bar it would be great to have a built in method to break the bar and / or scale.
I found the image below as an example from this stack exchange question.
Beta Was this translation helpful? Give feedback.
All reactions