{#if Object?.keys(data)?.length !== 0 && totalProductRevenue !== 0}
Based on the latest earnings report the main contributors of revenue are:
'#00bbff'} colorLinks={d => '#00bbff35'} />
Full report
{#if geographicList?.length !== 0 && totalGeographicRevenue !== 0}
The highest revenue was generated in the {geographicList?.length} regions:
{#each (showFullStats ? geographicList : geographicList?.slice(0,3)) as item,index}
{#if item?.name?.toLowerCase() === 'europe'} {:else if item?.name?.toLowerCase() === 'taiwan'} {:else if item?.code == 'xx'} {:else} Country Logo {/if}
{item?.name?.length > charNumber ? formatString(item?.name)?.slice(0,charNumber) + "..." : formatString(item?.name)} ยท ${abbreviateNumber(item?.value)} {(item?.value/totalGeographicRevenue * 100)?.toFixed(2)}%
{/each}
{/if} {#if geographicList?.length > 2} {/if} {:else}

No data available

{/if}