diff --git a/src/panel-triggers/components/ProblemTimeline.tsx b/src/panel-triggers/components/ProblemTimeline.tsx
index 9fd8c7f..2f1f1d1 100644
--- a/src/panel-triggers/components/ProblemTimeline.tsx
+++ b/src/panel-triggers/components/ProblemTimeline.tsx
@@ -4,13 +4,18 @@ import { GFTimeRange, ZBXEvent } from 'panel-triggers/types';
const DEFAULT_OK_COLOR = 'rgb(56, 189, 113)';
const DEFAULT_PROBLEM_COLOR = 'rgb(215, 0, 0)';
-const EVENT_ITEM_SIZE = 16;
+const EVENT_POINT_SIZE = 20;
+const INNER_POINT_SIZE = 0.6;
+const HIGHLIGHTED_POINT_SIZE = 1.2;
+const EVENT_REGION_HEIGHT = Math.round(EVENT_POINT_SIZE * 0.6);
export interface ProblemTimelineProps {
events: ZBXEvent[];
timeRange: GFTimeRange;
okColor?: string;
problemColor?: string;
+ eventRegionHeight?: number;
+ eventPointSize?: number;
}
interface ProblemTimelineState {
@@ -25,6 +30,8 @@ export default class ProblemTimeline extends PureComponent