Skip to content

Weekday labels style don't take any effect #207

Open
@shivamka1

Description

@shivamka1

I was trying to add some space between weekday lables and the graph but it doesn't seem to take any effect!

.react-calendar-heatmap-weekday-labels {
  margin-right: 5px !important;
  padding-right: 5px !important;
}

The only thing that seems to work is:

const weekdayLabels = document.getElementsByClassName('react-calendar-heatmap-weekday-labels');
  console.log(weekdayLabels);
  for (var elem of weekdayLabels) {
    elem.setAttribute('transform', 'translate(7, 14)');
  }

Please explain!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions