diff --git a/src/LineChart/renderHorizSections.tsx b/src/LineChart/renderHorizSections.tsx
index 24d9536..ac31810 100644
--- a/src/LineChart/renderHorizSections.tsx
+++ b/src/LineChart/renderHorizSections.tsx
@@ -178,7 +178,7 @@ export const renderHorizSections = props => {
if (hideOrigin && index === horizSections.length - 1) {
label = '';
}
- return (
+ return label.length > 0 ? (
{
{label}
- );
+ ) : null;
})
/***********************************************************************************************/
/***********************************************************************************************/
@@ -289,7 +289,7 @@ export const renderHorizSections = props => {
horizSectionsBelow[horizSectionsBelow.length - 1 - index].value,
index,
);
- return (
+ return label.length > 0 ? (
{
{label}
- );
+ ) : null;
})
/***********************************************************************************************/
/***********************************************************************************************/