Skip to content

Commit

Permalink
fix: tsvb border for bgColor with alpha values
Browse files Browse the repository at this point in the history
  • Loading branch information
nickofthyme committed Jun 24, 2020
1 parent 6207f94 commit d82c6b8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/plugins/charts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Color mappings in `value`/`text` form

### `getHeatmapColors`

Funciton to retrive heatmap related colors based on `value` and `colorSchemaName`
Function to retrieve heatmap related colors based on `value` and `colorSchemaName`

### `truncatedColorSchemas`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
display: flex;
flex-direction: column;
flex: 1 1 100%;
padding: $euiSizeS;
border-width: $euiSizeS;
border-style: solid;
border-color: transparent;

.tvbVisTimeSeries {
overflow: hidden;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export class TimeseriesVisualization extends Component {
const styles = reactCSS({
default: {
tvbVis: {
backgroundColor: get(model, 'background_color'),
borderColor: get(model, 'background_color'),
},
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,6 @@ TimeSeries.defaultProps = {
};

TimeSeries.propTypes = {
darkMode: PropTypes.bool,
backgroundColor: PropTypes.string,
showGrid: PropTypes.bool,
legend: PropTypes.bool,
Expand Down

0 comments on commit d82c6b8

Please sign in to comment.