react-native-responsive-linechart icon indicating copy to clipboard operation
react-native-responsive-linechart copied to clipboard

Border is not used in <Line />

Open mikeislearning opened this issue 3 years ago • 2 comments

Here's what my line code looks like, and works fine:

  <Line
    theme={{
      stroke: { color: "blue", width: 2 },
      scatter: {
        default: {
          width: 12,
          height: 12,
          rx: 12,
          color: "blue",
          border: {
            color: "red",
            width: 10,
            dashArray: [5],
          },
        },
      },
    }}
  />
Screen Shot 2021-08-24 at 10 59 44 AM

But it doesn't seem to recognize the values passed into "border". I read through the source code, and it doesn't look like the values from border are being applied. Anyone have a way to resolve this?

mikeislearning avatar Aug 24 '21 15:08 mikeislearning

Fixed in my pull request #147

pettinz avatar Oct 13 '21 08:10 pettinz

still not merged :/

Engazan avatar Apr 17 '22 13:04 Engazan