InnoTopic / InnoTopic_Website

https://inno-topic-website.vercel.app
5 stars 2 forks source link

Print should display all skills nodes in topics graph #76

Open JayTailor45 opened 3 months ago

JayTailor45 commented 3 months ago

Currently, some skill nodes are getting cut off in both print and normal page. This issue needs to be resolved.

Screenshot 2024-07-19 at 2 00 43 PM
karol-depka commented 3 months ago

Let's start by splitting the graph data definitions (connections and nodes) from topics-graph.component.ts into new file: topics-graph.component.data.ts

I mean this:

  @Input()
  connections: GraphConnections = {
    CSS3: {
      sizeMult: bigSize,
      connections: {
karol-depka commented 3 months ago

similar pattern of splitting the data off to separate file, like in topics-data.ts

samyakjainnnnn commented 3 months ago
Screenshot 2024-07-26 at 1 29 32 AM

take a look at this Karol