[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"nav-categories":3,"article-a-beginner-s-guide-to-d3-heat-map":70},{"data":4},[5,37,57,64],{"name":6,"slug":7,"categories":8},"Productivity","productivity",[9,13,17,21,25,29,33],{"id":10,"title":11,"slug":12},17,"Branding","branding",{"id":14,"title":15,"slug":16},19,"Marketing","marketing",{"id":18,"title":19,"slug":20},20,"Work","work",{"id":22,"title":23,"slug":24},34,"Community","community",{"id":26,"title":27,"slug":28},21,"For newbies","for-newbies",{"id":30,"title":31,"slug":32},24,"Investment","investment",{"id":34,"title":35,"slug":36},22,"Finance","finance",{"name":38,"slug":39,"categories":40},"Tech","tech",[41,45,49,53],{"id":42,"title":43,"slug":44},28,"Technology","technology",{"id":46,"title":47,"slug":48},32,"Artificial Intelligence","artificial-intelligence",{"id":50,"title":51,"slug":52},26,"Security and protection","security-and-protection",{"id":54,"title":55,"slug":56},31,"YouTube Blog","youtube-blog",{"name":58,"slug":59,"categories":60},"News","news",[61],{"id":62,"title":58,"slug":63},18,"quasanews",{"name":65,"slug":66,"categories":67},"Business","business",[68],{"id":69,"title":65,"slug":66},16,{"post":71,"published_news":96,"popular_news":163,"categories":233},{"title":72,"description":73,"meta_title":72,"meta_description":73,"meta_keywords":74,"text":75,"slug":76,"created_at":77,"publish_at":78,"formatted_created_at":79,"category_id":42,"links":80,"view_type":85,"video_url":86,"views":87,"likes":88,"lang":89,"comments_count":88,"category":90},"A Beginner’s Guide To D3 Heat Map","Sencha D3 JavaScript is fully integrated with Ext JS, allowing you to generate rich data visualizations quickly and include them in any Ext JS web application.","Sencha D3 JavaScript, D3 Heat Map","\u003Cp>Hello!\u003C/p>\n\n\u003Cp>Sencha D3 \u003Ca href=\"https://quasa.io/media/what-is-a-great-javascript-real-time-chart-library\">JavaScript\u003C/a> is fully integrated with Ext JS, allowing you to generate rich data visualizations quickly and include them in any Ext JS web application.\u003C/p>\n\n\u003Cp>D3 package contains many component types, such as treemaps,&nbsp;&nbsp;D3 heat map, and pivot heatmaps. Read on to explore more about the D3 heat map.\u003C/p>\n\n\u003Ch3>What is D3?\u003C/h3>\n\n\u003Cp>\u003Cpicture class=\"image-align-left\">\u003Csource srcset=\"https://cdn.quasa.io/photos/foto-1/0-fi-17.webp\" type=\"image/webp\">\u003Cimg alt=\"A Beginner’s Guide To D3 Heat Map\" class=\"image-align-left\" height=\"185\" src=\"https://cdn.quasa.io/photos/foto-1/0-fi-17.jpg\" width=\"300\" />\u003C/picture>D3 (Data-Driven Components) is a JavaScript library with many features. It allows you to create interactive and dynamic data visualizations in your web browser using modern web standards like HTML, SVG, and CSS. D3 is also free and open-source, allowing you to utilize it without investing a dime.\u003C/p>\n\n\u003Cp>Moreover, D3 isn&rsquo;t a monolithic framework that tries to provide every possible function. Instead, it focuses on the issue&rsquo;s root: data-driven document alteration. It eliminates proprietary representation and offers high flexibility, making web standards like HTML, SVG, and CSS shine.\u003C/p>\n\n\u003Cp>D3 is also incredibly fast, with minimum overhead. Furthermore, it can handle massive datasets and dynamic actions for interactivity and&nbsp;animations. In addition, the functional approach of D3 allows code reusability through a varied array of standard and community-developed components.\u003C/p>\n\n\u003Ch3>What Is A D3 Heat Map?\u003C/h3>\n\n\u003Cp>The &lsquo;d3-heatmap&rsquo; element displays matrices with individual values represented by colors. For example, two Ext.d3.axis are used in the component as a single Ext.d3.axis and data axes. The values are encoded using a color axis.\u003C/p>\n\n\u003Cp>Heat maps are excellent for displaying three-dimensional information in a two-dimensional diagram. As you might assume, the heat map element maps X and Y data to axes. The Z values are then mapped to a &lsquo;color axis.&rsquo;\u003C/p>\n\n\u003Ch3>How Does Theming Work?\u003C/h3>\n\n\u003Cp>\u003Cpicture class=\"image-align-left\">\u003Csource srcset=\"https://cdn.quasa.io/photos/foto-gangadhar/1htrhrthrthrthrtytry.webp\" type=\"image/webp\">\u003Cimg alt=\"A Beginner’s Guide To D3 Heat Map\" class=\"image-align-left\" height=\"300\" src=\"https://cdn.quasa.io/photos/foto-gangadhar/1htrhrthrthrthrtytry.jpg\" width=\"300\" />\u003C/picture>Themes are essential for charts as they can identify other listings inside the chart. For example, D3 heat maps support them. Themes work in the same way as other Ext JS components.\u003C/p>\n\n\u003Cp>However, there is an exception regarding heat map cell and tree node colors. It will necessitate the use of Ext.d3.axis to show a color range from white to red. There, white can be the lowest performance while red is the highest, as shown in the following code.\u003C/p>\n\n\u003Ch6>\u003Cem>colorAxis: {\u003Cbr />\nfield: &lsquo;performance&rsquo;,\u003Cbr />\nscale: {\u003Cbr />\ntype: &lsquo;linear&rsquo;,\u003Cbr />\nrange: [&lsquo;white&rsquo;, &lsquo;orange&rsquo;]\u003Cbr />\n}\u003Cbr />\n}\u003C/em>\u003C/h6>\n\n\u003Ch3>What Are The Events In D3?\u003C/h3>\n\n\u003Cp>Events can occur at different points of the life cycle of the charts. D3 has a system for handling node events. However, it is incompatible with the event system of Ext JS.\u003C/p>\n\n\u003Cp>Furthermore, touch events are not immediately mapped to desktop events and vice versa in the D3 event system. Therefore, it is not recommended to use that event system directly. Instead of that, use the following approaches.\u003C/p>\n\n\u003Ch3>Each Method\u003C/h3>\n\n\u003Ch6>\u003Cem>selection.each(function (node) {\u003Cbr />\nExt.fly(this).on(&lsquo;click&rsquo;, handlerFn, scope);\u003Cbr />\n});\u003C/em>\u003C/h6>\n\n\u003Ch3>Fly Method\u003C/h3>\n\n\u003Ch6>\u003Cem>Ext.fly(selection.node()).on(&lsquo;click&rsquo;, handlerFn, scope);\u003C/em>\u003C/h6>\n\n\u003Ch3>Preferred Method\u003C/h3>\n\n\u003Ch6>\u003Cem>var element = Ext.get(me.getScene().node());\u003C/em>\u003C/h6>\n\n\u003Ch6>\u003Cem>element.on(&lsquo;click&rsquo;, handlerFn, scope, {\u003Cbr />\ndelegate: &lsquo;g.x-class-name&rsquo;\u003Cbr />\n});\u003C/em>\u003C/h6>\n\n\u003Ch3>What Are The Interactions Supported In A D3 Heat Map?\u003C/h3>\n\n\u003Cp>\u003Cpicture class=\"image-align-left\">\u003Csource srcset=\"https://cdn.quasa.io/photos/foto-gangadhar/1hvfiheogei.webp\" type=\"image/webp\">\u003Cimg alt=\"A Beginner’s Guide To D3 Heat Map\" class=\"image-align-left\" height=\"294\" src=\"https://cdn.quasa.io/photos/foto-gangadhar/1hvfiheogei.jpg\" width=\"300\" />\u003C/picture>Interactions are a must-have feature in charts, as it helps end-users interact with the chart data. The &lsquo;interaction&rsquo; concept is provided by D3 components instead of using the &lsquo;behaviors&rsquo; of D3.\u003C/p>\n\n\u003Cp>Ext.d3.interaction.PanZoom is the only interaction that is currently supported. It&rsquo;s designed to replace and improve the &lsquo;zoom&rsquo; behavior of D3. It does not support limited kinetic scrolling, panning, scroll indicators, and the ExtJS event system. The &lsquo;Panzoom interaction addresses these issues.\u003C/p>\n\n\u003Ch3>Can I Add Tooltips?\u003C/h3>\n\n\u003Cp>Tooltips are the captions that display when users hover on data points of your chart. They are pretty helpful for the end-user to quickly identify a&nbsp;data point&nbsp;in a chart with a massive range of data.\u003C/p>\n\n\u003Cp>The Ext.d3.mixin supports the &lsquo;tooltip&rsquo; config in all elevated components using the &lsquo;Ext.d3.mixin.ToolTip mixin&rsquo;. The tooltip configuration is similar to other ExtJS components, except for one additional property called &lsquo;renderer.&rsquo;\u003C/p>\n\n\u003Cp>The renderer is usually the only feature that must be supported when creating a tooltip. As explained below, there are two types of methods to set up your&nbsp;tooltip.\u003C/p>\n\n\u003Ch3>View Controller Method\u003C/h3>\n\n\u003Ch6>\u003Cem>tooltip: {&nbsp; // inside a view&rsquo;s D3 component configuration\u003Cbr />\nrenderer: &lsquo;tooltip&rsquo;\u003Cbr />\n}\u003C/em>\u003C/h6>\n\n\u003Ch6>\u003Cem>// handler\u003C/em>\u003C/h6>\n\n\u003Ch6>\u003Cem>tooltip: function (comp, tooltip, node, element, event) {\u003Cbr />\nvar x = node.childNodes.length;\u003Cbr />\ntooltip.setHtml(x + &lsquo; items&rsquo; + (x === 1 ? &rdquo; : &lsquo;s&rsquo;) + &lsquo; inside.&rsquo;);\u003Cbr />\n}\u003C/em>\u003C/h6>\n\n\u003Ch3>View Method\u003C/h3>\n\n\u003Ch6>\u003Cem>tooltip :\u003Cbr />\nrenderer: function(comp, tooltip, record) {\u003Cbr />\ntooltip.setHtml(record.get(&lsquo;text&rsquo;));\u003Cbr />\n}\u003Cbr />\n}\u003C/em>\u003C/h6>\n\n\u003Ch3>Is Pivoting Possible?\u003C/h3>\n\n\u003Cp>\u003Cpicture class=\"image-align-left\">\u003Csource srcset=\"https://cdn.quasa.io/photos/foto-gangadhar/1gtj6u5yrthtbt.webp\" type=\"image/webp\">\u003Cimg alt=\"A Beginner’s Guide To D3 Heat Map\" class=\"image-align-left\" height=\"300\" src=\"https://cdn.quasa.io/photos/foto-gangadhar/1gtj6u5yrthtbt.jpg\" width=\"300\" />\u003C/picture>Pivot charts are an effective method of representing data more pictorially, making the&nbsp;visualization process&nbsp;easier. A Pivot Matrix can also be used to integrate local data. Several essential components which combine these parts for you are included in the latest &lsquo;pivot-d3&rsquo; package.\u003C/p>\n\n\u003Cp>If we mainly talk about heat maps, the Ext.pivot.D3.HeatMap exists in that package. It only generates a D3 heat map. Therefore, only one dimension per axis should be specified.\u003C/p>\n\n\u003Ch3>What Does The D3 Adapter Do?\u003C/h3>\n\n\u003Cp>The&nbsp;D3 Adapter&nbsp;allows you to integrate powerful Data-Driven Documents (D3) package visualizations, such as heat maps, sunbursts, and treemaps, into your web apps. Users can now develop dynamic visuals that illustrate a particular story and assist users in exploring their data and interpreting what stories it contains.\u003C/p>\n\n\u003Cp>Also read:\u003C/p>\n\n\u003Cul>\n\t\u003Cli>\u003Ca href=\"https://quasa.io/media/how-to-measure-the-impact-of-data-analytics\">How to Measure the Impact of Data Analytics\u003C/a>\u003C/li>\n\t\u003Cli>\u003Ca href=\"https://quasa.io/media/virtual-credit-card-8-features-and-benefits-you-should-know\">Virtual Credit Card: 8 Features and Benefits You Should Know\u003C/a>\u003C/li>\n\t\u003Cli>\u003Ca href=\"https://quasa.io/media/money-transfers-to-an-inmate\">Money Transfers To An Inmate\u003C/a>\u003C/li>\n\u003C/ul>\n\n\u003Ch3>Which Features Does Sencha Offer?\u003C/h3>\n\n\u003Cp>Sencha Charts is a powerful new library for building charts in Sencha Touch and Ext JS apps. This library is designed and optimized to be fully compatible with motions and touch devices, making data visualizations a breeze.\u003C/p>\n\n\u003Cp>Bundled up with D3, Sencha also provides advanced data visualizations, such as treemaps and heat maps, making it more valuable to end-users.\u003C/p>\n\n\u003Cp>Thank you!\u003Cbr />\nJoin us on social media!\u003Cbr />\nSee you!\u003C/p>","a-beginner-s-guide-to-d3-heat-map","2023-10-07T13:39:04.000000Z","2023-10-10T10:30:00.000000Z","10.10.2023",{"image":81,"image_webp":82,"thumb":83,"thumb_webp":84},"https://cdn.quasa.io/images/news/zhHFdtTfN6juT0N6mZEM9UsTvX2C61A6GU7xlsEq.png","https://cdn.quasa.io/images/news/zhHFdtTfN6juT0N6mZEM9UsTvX2C61A6GU7xlsEq.webp","https://cdn.quasa.io/thumbs/news-thumb/images/news/zhHFdtTfN6juT0N6mZEM9UsTvX2C61A6GU7xlsEq.png","https://cdn.quasa.io/thumbs/news-thumb/images/news/zhHFdtTfN6juT0N6mZEM9UsTvX2C61A6GU7xlsEq.webp","large",null,2417,0,"en",{"id":42,"title":43,"slug":44,"meta_title":91,"meta_description":92,"meta_keywords":93,"deleted_at":86,"created_at":94,"updated_at":95,"lang":89},"Technology | AI Breakthroughs and Fresh News | QUASA","All the most interesting and useful about technologies. Exclusive articles from technologies you won't find anywhere else.","Technology, tech, business, ai, gadget, gadgets, life hacks","2023-03-23T08:15:32.000000Z","2026-04-22T15:05:32.000000Z",[97,113,126,138,151],{"title":98,"description":99,"slug":100,"created_at":101,"publish_at":102,"formatted_created_at":103,"category":104,"links":105,"view_type":110,"video_url":86,"views":111,"likes":88,"lang":89,"comments_count":88,"is_pinned":112},"Ikea Keeps the Human Face in the Age of AI: How Chatbot Billie Created More Creative Jobs — and $1.3 Billion in New Revenue","In an industry where many companies are racing to replace customer-service staff with AI, Swedish furniture giant Ikea has taken the opposite path.","ikea-keeps-the-human-face-in-the-age-of-ai-how-chatbot-billie-created-more-creative-jobs-and-1-3-billion-in-new-revenue","2026-04-19T14:33:29.000000Z","2026-04-23T03:23:00.000000Z","23.04.2026",{"title":65,"slug":66},{"image":106,"image_webp":107,"thumb":108,"thumb_webp":109},"https://cdn.quasa.io/images/news/kPnnP95Xkml8A4gkXzaPwD34FPO0oXCjf1rcxWxU.jpg","https://cdn.quasa.io/images/news/kPnnP95Xkml8A4gkXzaPwD34FPO0oXCjf1rcxWxU.webp","https://cdn.quasa.io/thumbs/news-thumb/images/news/kPnnP95Xkml8A4gkXzaPwD34FPO0oXCjf1rcxWxU.jpg","https://cdn.quasa.io/thumbs/news-thumb/images/news/kPnnP95Xkml8A4gkXzaPwD34FPO0oXCjf1rcxWxU.webp","small",8,false,{"title":114,"description":115,"slug":116,"created_at":117,"publish_at":117,"formatted_created_at":118,"category":119,"links":120,"view_type":85,"video_url":86,"views":125,"likes":88,"lang":89,"comments_count":88,"is_pinned":112},"How to Restore Safari and Chrome Bookmarks on Mac?","Bookmarks are an essential part of the browsing experience on your Mac. It allows you to save\nfrequently visited websites for quick access and organise important online resources. udden deletion of these\nbookmarks may put you in trouble.\nthere are several recovery methods you can try to get them back. This guide\nprovides step-by-step instructions on how to restore Safari and Chrome bookmarks","how-to-restore-safari-and-chrome-bookmarks-on-mac","2026-04-22T15:39:55.000000Z","22.04.2026",{"title":19,"slug":20},{"image":121,"image_webp":122,"thumb":123,"thumb_webp":124},"https://cdn.quasa.io/images/news/hBjTWPhvzMGFz18cDvMRMg3qvogyonQmGvFvbyyl.png","https://cdn.quasa.io/images/news/hBjTWPhvzMGFz18cDvMRMg3qvogyonQmGvFvbyyl.webp","https://cdn.quasa.io/thumbs/news-thumb/images/news/hBjTWPhvzMGFz18cDvMRMg3qvogyonQmGvFvbyyl.png","https://cdn.quasa.io/thumbs/news-thumb/images/news/hBjTWPhvzMGFz18cDvMRMg3qvogyonQmGvFvbyyl.webp",69,{"title":127,"description":128,"slug":129,"created_at":130,"publish_at":130,"formatted_created_at":118,"category":131,"links":132,"view_type":85,"video_url":86,"views":137,"likes":88,"lang":89,"comments_count":88,"is_pinned":112},"How Crypto APIs Handle Security, Liquidity, and Risk","Crypto APIs will operate seamlessly in the background, shouldering much of the security, liquidity, and risk burdens previously borne by fully integrated exchanges. The way APIs are designed and managed has direct implications for user funds, market integrity, and regulatory liability.","how-crypto-apis-handle-security-liquidity-and-risk","2026-04-22T14:41:47.000000Z",{"title":35,"slug":36},{"image":133,"image_webp":134,"thumb":135,"thumb_webp":136},"https://cdn.quasa.io/images/news/Dq35sRK4P0SBU9YzswYaMFchvdzlCbDEXTQUsYlN.jpg","https://cdn.quasa.io/images/news/Dq35sRK4P0SBU9YzswYaMFchvdzlCbDEXTQUsYlN.webp","https://cdn.quasa.io/thumbs/news-thumb/images/news/Dq35sRK4P0SBU9YzswYaMFchvdzlCbDEXTQUsYlN.jpg","https://cdn.quasa.io/thumbs/news-thumb/images/news/Dq35sRK4P0SBU9YzswYaMFchvdzlCbDEXTQUsYlN.webp",75,{"title":139,"description":140,"slug":141,"created_at":142,"publish_at":143,"formatted_created_at":118,"category":144,"links":145,"view_type":110,"video_url":86,"views":150,"likes":88,"lang":89,"comments_count":88,"is_pinned":112},"The Generative Music Wars Heat Up: While Musicians Fight AI, New Platforms Are Thriving","The battle over AI-generated music continues to escalate, but the battlefield is shifting.","the-generative-music-wars-heat-up-while-musicians-fight-ai-new-platforms-are-thriving","2026-04-17T18:50:34.000000Z","2026-04-22T11:41:00.000000Z",{"title":65,"slug":66},{"image":146,"image_webp":147,"thumb":148,"thumb_webp":149},"https://cdn.quasa.io/images/news/e0P68JQyInirQ3jfkFJtZFk7cmztICoGAexABUfu.jpg","https://cdn.quasa.io/images/news/e0P68JQyInirQ3jfkFJtZFk7cmztICoGAexABUfu.webp","https://cdn.quasa.io/thumbs/news-thumb/images/news/e0P68JQyInirQ3jfkFJtZFk7cmztICoGAexABUfu.jpg","https://cdn.quasa.io/thumbs/news-thumb/images/news/e0P68JQyInirQ3jfkFJtZFk7cmztICoGAexABUfu.webp",93,{"title":152,"description":153,"slug":154,"created_at":155,"publish_at":155,"formatted_created_at":118,"category":156,"links":157,"view_type":110,"video_url":86,"views":162,"likes":88,"lang":89,"comments_count":88,"is_pinned":112},"a16z Invests in MTS: The 24/7 “Monitoring the Situation” Livestream That Wants to Own Real-Time News on X","Andreessen Horowitz has just backed one of the most straightforward — and potentially most influential — media experiments of 2026.","a16z-invests-in-mts-the-24-7-monitoring-the-situation-livestream-that-wants-to-own-real-time-news-on-x","2026-04-22T10:26:16.000000Z",{"title":58,"slug":63},{"image":158,"image_webp":159,"thumb":160,"thumb_webp":161},"https://cdn.quasa.io/images/news/863CSHWk8jqXvpZzTsOjd14NyQfaBFERd09zQxFm.jpg","https://cdn.quasa.io/images/news/863CSHWk8jqXvpZzTsOjd14NyQfaBFERd09zQxFm.webp","https://cdn.quasa.io/thumbs/news-thumb/images/news/863CSHWk8jqXvpZzTsOjd14NyQfaBFERd09zQxFm.jpg","https://cdn.quasa.io/thumbs/news-thumb/images/news/863CSHWk8jqXvpZzTsOjd14NyQfaBFERd09zQxFm.webp",97,[164,177,192,204,219],{"title":165,"description":166,"slug":167,"created_at":168,"publish_at":169,"formatted_created_at":170,"category":171,"links":172,"view_type":110,"video_url":86,"views":175,"likes":176,"lang":89,"comments_count":88,"is_pinned":112},"The Anatomy of an Entrepreneur","Entrepreneur is a French word that means an enterpriser. Enterprisers are people who undertake a business or enterprise with the chance of earning profits or suffering from loss.","the-anatomy-of-an-entrepreneur","2021-08-04T15:18:21.000000Z","2025-12-14T06:09:00.000000Z","14.12.2025",{"title":65,"slug":66},{"image":173,"image_webp":86,"thumb":174,"thumb_webp":174},"https://cdn.quasa.io/images/news/mVsXPTMuHZuI7UXCsENgL1Qwp1uSOf7Rz3uVPMfm.webp","https://cdn.quasa.io/thumbs/news-thumb/images/news/mVsXPTMuHZuI7UXCsENgL1Qwp1uSOf7Rz3uVPMfm.webp",71263,2,{"title":178,"description":179,"slug":180,"created_at":181,"publish_at":182,"formatted_created_at":183,"category":184,"links":185,"view_type":85,"video_url":86,"views":190,"likes":191,"lang":89,"comments_count":88,"is_pinned":112},"Advertising on QUASA","QUASA MEDIA is read by more than 400 thousand people a month. We offer to place your article, add a link or order the writing of an article for publication.","advertising-on-quasa","2022-07-06T07:33:02.000000Z","2025-12-15T17:33:02.000000Z","15.12.2025",{"title":58,"slug":63},{"image":186,"image_webp":187,"thumb":188,"thumb_webp":189},"https://cdn.quasa.io/images/news/45SvmdsTQbiyc3nxgbyHY1mpVbisYyub2BCHjqBL.jpg","https://cdn.quasa.io/images/news/45SvmdsTQbiyc3nxgbyHY1mpVbisYyub2BCHjqBL.webp","https://cdn.quasa.io/thumbs/news-thumb/images/news/45SvmdsTQbiyc3nxgbyHY1mpVbisYyub2BCHjqBL.jpg","https://cdn.quasa.io/thumbs/news-thumb/images/news/45SvmdsTQbiyc3nxgbyHY1mpVbisYyub2BCHjqBL.webp",71036,4,{"title":193,"description":194,"slug":195,"created_at":196,"publish_at":197,"formatted_created_at":198,"category":199,"links":200,"view_type":110,"video_url":86,"views":203,"likes":191,"lang":89,"comments_count":88,"is_pinned":112},"What is a Startup?","A startup is not a new company, not a tech company, nor a new tech company. You can be a new tech company, if your goal is not to grow high and fast; then, you are not a startup. ","what-is-a-startup","2021-08-04T12:05:17.000000Z","2025-12-17T13:02:00.000000Z","17.12.2025",{"title":65,"slug":66},{"image":201,"image_webp":86,"thumb":202,"thumb_webp":202},"https://cdn.quasa.io/images/news/EOsQhSW3VXyG7a6NPdE1oZd00xfJXe3bjY5aJGb7.webp","https://cdn.quasa.io/thumbs/news-thumb/images/news/EOsQhSW3VXyG7a6NPdE1oZd00xfJXe3bjY5aJGb7.webp",68654,{"title":205,"description":206,"slug":207,"created_at":208,"publish_at":209,"formatted_created_at":210,"category":211,"links":212,"view_type":110,"video_url":86,"views":217,"likes":176,"lang":89,"comments_count":218,"is_pinned":112},"Top 5 Tips to Make More Money as a Content Creator","Content creators are one of the most desired job titles right now. Who wouldn’t want to earn a living online?","top-5-tips-to-make-more-money-as-a-content-creator","2022-01-17T17:31:51.000000Z","2026-01-17T11:30:00.000000Z","17.01.2026",{"title":19,"slug":20},{"image":213,"image_webp":214,"thumb":215,"thumb_webp":216},"https://cdn.quasa.io/images/news/gP8kiumBPpJmQv6SMieXiX1tDetx43VwFfO1P4Ca.jpg","https://cdn.quasa.io/images/news/gP8kiumBPpJmQv6SMieXiX1tDetx43VwFfO1P4Ca.webp","https://cdn.quasa.io/thumbs/news-thumb/images/news/gP8kiumBPpJmQv6SMieXiX1tDetx43VwFfO1P4Ca.jpg","https://cdn.quasa.io/thumbs/news-thumb/images/news/gP8kiumBPpJmQv6SMieXiX1tDetx43VwFfO1P4Ca.webp",42604,1,{"title":220,"description":221,"slug":222,"created_at":223,"publish_at":224,"formatted_created_at":225,"category":226,"links":227,"view_type":85,"video_url":86,"views":232,"likes":176,"lang":89,"comments_count":88,"is_pinned":112},"8 Logo Design Tips for Small Businesses","Your logo tells the story of your business and the values you stand for.","8-logo-design-tips-for-small-businesses","2021-12-04T21:59:52.000000Z","2025-05-05T03:30:00.000000Z","05.05.2025",{"title":15,"slug":16},{"image":228,"image_webp":229,"thumb":230,"thumb_webp":231},"https://cdn.quasa.io/images/news/Wbx2NtS1CnTupgoQbpFMGspJ5jm4uob2hDOq33r0.jpg","https://cdn.quasa.io/images/news/Wbx2NtS1CnTupgoQbpFMGspJ5jm4uob2hDOq33r0.webp","https://cdn.quasa.io/thumbs/news-thumb/images/news/Wbx2NtS1CnTupgoQbpFMGspJ5jm4uob2hDOq33r0.jpg","https://cdn.quasa.io/thumbs/news-thumb/images/news/Wbx2NtS1CnTupgoQbpFMGspJ5jm4uob2hDOq33r0.webp",41677,[234,235,236,237,238,239,240,241,242,243,244,245,246],{"title":23,"slug":24},{"title":47,"slug":48},{"title":55,"slug":56},{"title":43,"slug":44},{"title":51,"slug":52},{"title":31,"slug":32},{"title":35,"slug":36},{"title":27,"slug":28},{"title":19,"slug":20},{"title":15,"slug":16},{"title":58,"slug":63},{"title":11,"slug":12},{"title":65,"slug":66}]