{"id":2889,"date":"2025-09-24T20:39:58","date_gmt":"2025-09-24T20:39:58","guid":{"rendered":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/?page_id=2889"},"modified":"2025-12-03T23:56:44","modified_gmt":"2025-12-03T23:56:44","slug":"investment-portfolio-by-companies","status":"publish","type":"page","link":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/investment-portfolio-by-companies\/","title":{"rendered":"Investment Portfolio by Companies"},"content":{"rendered":"\n\n\n\n\n\n\n\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<meta charset=\"UTF-8\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n<title>Portfolio Chart<\/title>\n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/chart.js\"><\/script>\n<style>\n    .portfolio-chart-wrapper {\n        position: relative;\n        width: 100%;\n        max-width: 1000px; \/* increased width *\/\n        height: 500px; \/* added height for better spacing *\/\n        margin: 20px auto 10px;\n        overflow: visible; \/* allow outside labels *\/\n    }\n\n    .chart-center-text {\n        position: absolute;\n        top: 50%;\n        left: 50%;\n        transform: translate(-50%, -50%);\n        text-align: center;\n        font-family: \"Segoe UI\", sans-serif;\n        font-weight: 600;\n        color: #333;\n        pointer-events: none;\n    }\n\n    .chart-center-text .big {\n        font-size: 2em;\n        font-weight: 700;\n        color: #2c3e50;\n        line-height: 1;\n    }\n\n    .chart-center-text .small {\n        font-size: 1em;\n        font-weight: 400;\n        letter-spacing: 0.5px;\n        color: #777;\n        margin-bottom: 2px;\n    }\n<\/style>\n<\/head>\n<body>\n<div class=\"portfolio-chart-wrapper\">\n    <canvas id=\"portfolioChart\"><\/canvas>\n    <div class=\"chart-center-text\">\n        <div class=\"small\">Total Portfolio<\/div>\n        <div class=\"big\">738.1m<\/div>\n    <\/div>\n<\/div>\n\n<script>\nconst dataValues = [238.3, 236.1, 84.8, 70.0, 45.7, 43.5, 19.7];\nconst labels = [\n    'Tourism',\n    'Retail',\n    'Finance',\n    'Properties',\n    'Media',\n    'Building & Construction',\n    'Manufacturing'\n];\nconst total = dataValues.reduce((a, b) => a + b, 0);\n\nconst ctx = document.getElementById('portfolioChart').getContext('2d');\n\nnew Chart(ctx, {\n    type: 'doughnut',\n    data: {\n        labels: labels,\n        datasets: [{\n            data: dataValues,\n            backgroundColor: [\n                '#f4b400', '#3366cc', '#109618', '#dc3912',\n                '#ff9900', '#990099', '#0099c6'\n            ],\n            borderColor: \"#fff\",\n            borderWidth: 3,\n            hoverOffset: 12\n        }]\n    },\n    options: {\n        responsive: true,\n        maintainAspectRatio: false, \/\/ allow flexible height\n        cutout: '68%',\n        rotation: -90,\n        circumference: 180,\n        layout: {\n            padding: {\ntop: 80,\nbottom: 80,\n                left: 80, \/\/ more padding for labels\n                right: 80\n            }\n        },\n        plugins: {\n            legend: {\n                display: true,\n                position: 'bottom',\n                labels: {\n                    boxWidth: 18,\n                    padding: 40,\n                    font: { size: 14, weight: \"600\" },\n                    color: \"#333\"\n                }\n            },\n            tooltip: {\n                backgroundColor: \"#2c3e50\",\n                titleFont: { size: 14, weight: \"bold\" },\n                bodyFont: { size: 13 },\n                bodyColor: \"#fff\",\n                callbacks: {\n                    label: function(context) {\n                        const value = context.raw;\n                        const percentage = ((value \/ total) * 100).toFixed(1);\n                        return `${context.label}: ${value}m (${percentage}%)`;\n                    }\n                }\n            }\n        }\n    },\n    plugins: [{\n        id: 'customLabels',\n        afterDraw(chart) {\n            const {ctx} = chart;\n            const active = chart.getActiveElements().map(a => a.index);\n\n            chart.data.datasets.forEach((dataset, i) => {\n                chart.getDatasetMeta(i).data.forEach((arc, index) => {\n                    const value = dataset.data[index];\n                    const percentage = ((value \/ total) * 100).toFixed(1);\n                    const pos = arc.tooltipPosition();\n\n                    \/\/ Hide inside labels on hover\n                    if (!active.includes(index)) {\n                        ctx.save();\n                        ctx.fillStyle = \"#fff\";\n                        ctx.font = \"bold 12px Segoe UI\";\n                        ctx.textAlign = \"center\";\n                        ctx.textBaseline = \"middle\";\n                        ctx.shadowColor = \"rgba(0,0,0,0.3)\";\n                        ctx.shadowBlur = 4;\n\n                        if (index === 6) { \/\/ Manufacturing\n                            ctx.fillText(`(${percentage}%)`, pos.x, pos.y);\n                        } else {\n                            ctx.fillText(`${value}m`, pos.x, pos.y - 8);\n                            ctx.fillText(`(${percentage}%)`, pos.x, pos.y + 8);\n                        }\n\n                        ctx.restore();\n                    }\n\n                    \/\/ Draw outside labels with wrapping\n                    const radius = arc.outerRadius + 5 ; \/\/ increased distance\n                    const angle = (arc.startAngle + arc.endAngle) \/ 2;\n                    const x = arc.x + Math.cos(angle) * radius;\n                    const y = arc.y + Math.sin(angle) * radius;\n\n                    ctx.save();\n                    ctx.fillStyle = \"#333\";\n                    ctx.font = \"500 12px Segoe UI\"; \/\/ slightly smaller\n                    ctx.textAlign = (x < arc.x ? \"right\" : \"left\");\n                    ctx.textBaseline = \"middle\";\n\n                    const maxWidth = 100; \/\/ more space for wrapping\n                    const label = labels[index];\n                    const words = label.split(' ');\n                    let line = '';\n                    let lineHeight = 16;\n                    let lineCount = 0;\n\n                    for (let n = 0; n < words.length; n++) {\n                        const testLine = line + (line ? ' ' : '') + words[n];\n                        const metrics = ctx.measureText(testLine);\n                        const testWidth = metrics.width;\n                        if (testWidth > maxWidth && n > 0) {\n                            ctx.fillText(line, x, y + lineCount * lineHeight - ((words.length-1) * lineHeight \/ 2));\n                            line = words[n];\n                            lineCount++;\n                        } else {\n                            line = testLine;\n                        }\n                    }\n                    ctx.fillText(line, x, y + lineCount * lineHeight - ((words.length-1) * lineHeight \/ 2));\n\n                    ctx.restore();\n                });\n            });\n        }\n    }]\n});\n<\/script>\n<\/body>\n<\/html>\n\n\n\n\n","protected":false},"excerpt":{"rendered":"<p>Fijian Holdings Limited (FHL) was born What started as an idea to give the iTaukei a meaningful presence in the business sector quickly became a powerful force for change. <\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_zb_attr":"","zolo_post_video_link":"","footnotes":""},"class_list":["post-2889","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>2025 Annual Report | Investment Portfolio<\/title>\n<meta name=\"description\" content=\"In 1984, a new chapter began for the iTaukei people of Fiji, driven by a vision to empower indigenous Fijians.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/fijianholdings.com.fj\/annual-report-2025\/investment-portfolio-by-companies\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"2025 Annual Report | Investment Portfolio\" \/>\n<meta property=\"og:description\" content=\"In 1984, a new chapter began for the iTaukei people of Fiji, driven by a vision to empower indigenous Fijians.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/fijianholdings.com.fj\/annual-report-2025\/investment-portfolio-by-companies\/\" \/>\n<meta property=\"og:site_name\" content=\"Fijian Holdings Ltd\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-03T23:56:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/fijianholdings.com.fj\/annual-report-2025\/wp-content\/uploads\/2025\/10\/screencapture-drive-google-drive-folders-1qfuDwcGTl-0cWT-GymgDXtHMlMbQjd1r-2025-10-06-11_36_04.png\" \/>\n\t<meta property=\"og:image:width\" content=\"794\" \/>\n\t<meta property=\"og:image:height\" content=\"406\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/investment-portfolio-by-companies\\\/\",\"url\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/investment-portfolio-by-companies\\\/\",\"name\":\"2025 Annual Report | Investment Portfolio\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/investment-portfolio-by-companies\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/investment-portfolio-by-companies\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Fiji-TV.jpg\",\"datePublished\":\"2025-09-24T20:39:58+00:00\",\"dateModified\":\"2025-12-03T23:56:44+00:00\",\"description\":\"In 1984, a new chapter began for the iTaukei people of Fiji, driven by a vision to empower indigenous Fijians.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/investment-portfolio-by-companies\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/investment-portfolio-by-companies\\\/#primaryimage\",\"url\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Fiji-TV.jpg\",\"contentUrl\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Fiji-TV.jpg\",\"width\":800,\"height\":244,\"caption\":\"shareholder18\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/#website\",\"url\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/\",\"name\":\"Fijian Holdings Ltd\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/#organization\",\"name\":\"Fijian Holdings Ltd\",\"url\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/40th-Anniversary-Logo-1-1.png\",\"contentUrl\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/40th-Anniversary-Logo-1-1.png\",\"width\":794,\"height\":406,\"caption\":\"Fijian Holdings Ltd\"},\"image\":{\"@id\":\"https:\\\/\\\/fijianholdings.com.fj\\\/annual-report-2025\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"2025 Annual Report | Investment Portfolio","description":"In 1984, a new chapter began for the iTaukei people of Fiji, driven by a vision to empower indigenous Fijians.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/investment-portfolio-by-companies\/","og_locale":"en_US","og_type":"article","og_title":"2025 Annual Report | Investment Portfolio","og_description":"In 1984, a new chapter began for the iTaukei people of Fiji, driven by a vision to empower indigenous Fijians.","og_url":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/investment-portfolio-by-companies\/","og_site_name":"Fijian Holdings Ltd","article_modified_time":"2025-12-03T23:56:44+00:00","og_image":[{"width":794,"height":406,"url":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/wp-content\/uploads\/2025\/10\/screencapture-drive-google-drive-folders-1qfuDwcGTl-0cWT-GymgDXtHMlMbQjd1r-2025-10-06-11_36_04.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/investment-portfolio-by-companies\/","url":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/investment-portfolio-by-companies\/","name":"2025 Annual Report | Investment Portfolio","isPartOf":{"@id":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/#website"},"primaryImageOfPage":{"@id":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/investment-portfolio-by-companies\/#primaryimage"},"image":{"@id":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/investment-portfolio-by-companies\/#primaryimage"},"thumbnailUrl":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/wp-content\/uploads\/2025\/10\/Fiji-TV.jpg","datePublished":"2025-09-24T20:39:58+00:00","dateModified":"2025-12-03T23:56:44+00:00","description":"In 1984, a new chapter began for the iTaukei people of Fiji, driven by a vision to empower indigenous Fijians.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/fijianholdings.com.fj\/annual-report-2025\/investment-portfolio-by-companies\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/investment-portfolio-by-companies\/#primaryimage","url":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/wp-content\/uploads\/2025\/10\/Fiji-TV.jpg","contentUrl":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/wp-content\/uploads\/2025\/10\/Fiji-TV.jpg","width":800,"height":244,"caption":"shareholder18"},{"@type":"WebSite","@id":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/#website","url":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/","name":"Fijian Holdings Ltd","description":"","publisher":{"@id":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/#organization","name":"Fijian Holdings Ltd","url":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/#\/schema\/logo\/image\/","url":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/wp-content\/uploads\/2025\/12\/40th-Anniversary-Logo-1-1.png","contentUrl":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/wp-content\/uploads\/2025\/12\/40th-Anniversary-Logo-1-1.png","width":794,"height":406,"caption":"Fijian Holdings Ltd"},"image":{"@id":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/wp-json\/wp\/v2\/pages\/2889","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/wp-json\/wp\/v2\/comments?post=2889"}],"version-history":[{"count":0,"href":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/wp-json\/wp\/v2\/pages\/2889\/revisions"}],"wp:attachment":[{"href":"https:\/\/fijianholdings.com.fj\/annual-report-2025\/wp-json\/wp\/v2\/media?parent=2889"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}