{#if graphType !== "growth"}

{title} Forecast

{#if options !== null} {/if}
{#each tableDataList as date, index} {/each} {#each highDataList as item, index} {/each} {#each avgDataList as item, index} {/each} {#each lowDataList as item, index} {/each}
{title} {#if index !== 0}{date}{/if}
High {#if index !== 0} {#if userTier !== "Pro" && index >= highDataList?.length - 2} Pro {:else} {abbreviateNumber(item?.val)} {/if} {/if}
Avg {#if index !== 0} {#if userTier !== "Pro" && index >= avgDataList?.length - 2} Pro {:else} {abbreviateNumber(item?.val)} {/if} {/if}
Low {#if index !== 0} {#if userTier !== "Pro" && index >= lowDataList?.length - 2} Pro {:else} {abbreviateNumber(item?.val)} {/if} {/if}
{:else}

{title}

{#if options !== null} {/if}
{#each tableDataList as date, index} {/each} {#each computeGrowthSingleList(highDataList, avgDataList) as item, index} {/each} {#each avgGrowthList?.filter((item) => item.FY >= 24) as item, index} {/each} {#each computeGrowthSingleList(lowDataList, avgDataList) as item, index} {/each}
{title}{#if index !== 0}{date}{/if}
High {#if index !== 0} {#if userTier !== "Pro" && index >= highDataList?.length - 2} Pro {:else} 0 ? "text-[#00FC50] before:content-['+']" : item?.growth < 0 ? "text-[#FF2F1F]" : "text-white"} > {item?.growth !== null && Math.abs(item?.growth - 0) > 0 ? abbreviateNumber(item?.growth) + "%" : "-"} {/if} {/if}
Avg {#if index !== 0} {#if userTier !== "Pro" && index >= avgDataList?.length - 2} Pro {:else} 0 ? "text-[#00FC50] before:content-['+']" : item?.growth < 0 ? "text-[#FF2F1F]" : "text-white"} > {item?.growth !== null && Math.abs(item?.growth - 0) > 0 ? abbreviateNumber(item?.growth) + "%" : "-"} {/if} {/if}
Low {#if index !== 0} {#if userTier !== "Pro" && index >= lowDataList?.length - 2} Pro {:else} 0 ? "text-[#00FC50] before:content-['+']" : item?.growth < 0 ? "text-[#FF2F1F]" : "text-white"} > {item?.growth !== null && Math.abs(item?.growth - 0) > 0 ? abbreviateNumber(item?.growth) + "%" : "-"} {/if} {/if}
{/if}