---
code: "SCH-17"
id: "c-sch-bcg"
tab: "schemas"
kind: "schema"
title: "BCG · 사업 포트폴리오"
library: "SVG"
deps: ["svg"]
load: "low"
pasteKind: "schema-svg"
family: "matrix"
dataShape: "4-cell diagram with 성장률×점유율 axis"
tasks: ["structure ideas", "explain process", "choose communication frame"]
tags: ["matrix", "성장률×점유율", "4cells", "BCG", "스타", "캐시카우", "포트폴리오"]
gallery: "https://graph.heal7.com/#SCH-17"
js: "/sku/SCH-17.js"
---

# [SCH-17] BCG · 사업 포트폴리오

> AI 붙여넣기 카드. 갤러리 런타임(`main.js`)이 아니라 이 파일을 가져와라.

## 언제 가져가나
시장 성장률 × 시장 점유율 4분면 — 사업 단위(SBU) 포트폴리오 진단.

**응용** 사업 포트폴리오 진단, 투자 우선순위, 제품 라이프사이클 매핑.

## 데이터 모양
- family: `matrix`
- dataShape: 4-cell diagram with 성장률×점유율 axis
- tasks: structure ideas, explain process, choose communication frame
- tags: matrix, 성장률×점유율, 4cells, BCG, 스타, 캐시카우, 포트폴리오

- schema.type: `matrix`
- schema.cells: `4`
- schema.axis: `성장률×점유율`


## 의존
svg · load `low` · library `SVG`

## 붙여넣는 법
1. 라이브러리 없음. svg viewBox 0 0 400 240
2. 아래 body 를 svg 안에 넣는다
3. 색 변수(`${gold}` 등)는 T 토큰으로 치환한다

```js
const T = {
  "bg": "transparent",
  "fg": "#ece8f5",
  "sub": "#a59bbd",
  "grid": "rgba(255,255,255,.08)",
  "gold": "#e8c069",
  "royal": "#6b8cff",
  "rose": "#e07a9f",
  "teal": "#6dd2c4",
  "plum": "#b487e8"
};
const gold = T.gold, royal = T.royal, rose = T.rose, teal = T.teal, plum = T.plum, fg = T.fg, sub = T.sub;
const stroke = 'rgba(255,255,255,.18)';
const fill1 = 'rgba(232,192,105,.10)';
const fill2 = 'rgba(107,140,255,.10)';
const host = document.querySelector('#chart');
const body = `
    <line x1="200" y1="30" x2="200" y2="200" stroke="${stroke}" stroke-width="1.5"/>
    <line x1="40" y1="115" x2="360" y2="115" stroke="${stroke}" stroke-width="1.5"/>
    <text x="195" y="26" text-anchor="end" fill="${sub}" font-size="10">시장 성장률 ↑</text>
    <text x="365" y="128" fill="${sub}" font-size="10">시장 점유율 →</text>
    ${[
      [60, 40,'?','물음표','육성 또는 철수',   plum],
      [220,40,'★','스타','적극 투자',          gold],
      [60,125,'🐶','개','철수·정리',          rose],
      [220,125,'$','캐시카우','수익 극대화',    teal]
    ].map(([x,y,k,lab,desc,c])=>`
      <rect x="${x}" y="${y}" width="120" height="70" rx="8" fill="${fill1}" stroke="${c}" stroke-width="1.5"/>
      <text x="${x+15}" y="${y+30}" fill="${c}" font-size="20" font-weight="700">${k}</text>
      <text x="${x+45}" y="${y+30}" fill="${fg}" font-size="12" font-weight="600">${lab}</text>
      <text x="${x+15}" y="${y+52}" fill="${sub}" font-size="10">${desc}</text>
    `).join('')}
    <text x="200" y="222" text-anchor="middle" fill="${sub}" font-size="10">Boston Consulting Group · 사업 단위 분류</text>
  `;
host.innerHTML = '<svg viewBox="0 0 400 240" width="100%" height="100%" preserveAspectRatio="xMidYMid meet" style="overflow:visible">' + (typeof body === 'string' ? body : '') + '</svg>';
```

## 원본 factory (갤러리 정본 발췌)
- file: `frontend/js/graph-gallery/main.js`
- lines: 3911-4470
- gallery: https://graph.heal7.com/#SCH-17
- raw js: https://graph.heal7.com/sku/SCH-17.js

```js
`
    <line x1="200" y1="30" x2="200" y2="200" stroke="${stroke}" stroke-width="1.5"/>
    <line x1="40" y1="115" x2="360" y2="115" stroke="${stroke}" stroke-width="1.5"/>
    <text x="195" y="26" text-anchor="end" fill="${sub}" font-size="10">시장 성장률 ↑</text>
    <text x="365" y="128" fill="${sub}" font-size="10">시장 점유율 →</text>
    ${[
      [60, 40,'?','물음표','육성 또는 철수',   plum],
      [220,40,'★','스타','적극 투자',          gold],
      [60,125,'🐶','개','철수·정리',          rose],
      [220,125,'$','캐시카우','수익 극대화',    teal]
    ].map(([x,y,k,lab,desc,c])=>`
      <rect x="${x}" y="${y}" width="120" height="70" rx="8" fill="${fill1}" stroke="${c}" stroke-width="1.5"/>
      <text x="${x+15}" y="${y+30}" fill="${c}" font-size="20" font-weight="700">${k}</text>
      <text x="${x+45}" y="${y+30}" fill="${fg}" font-size="12" font-weight="600">${lab}</text>
      <text x="${x+15}" y="${y+52}" fill="${sub}" font-size="10">${desc}</text>
    `).join('')}
    <text x="200" y="222" text-anchor="middle" fill="${sub}" font-size="10">Boston Consulting Group · 사업 단위 분류</text>
  `
```

## 시나리오
- 스타 (★) — 적극 투자, 시장 리더
- 캐시카우 ($) — 수익 극대화, 안정적 현금흐름
- 물음표 (?) — 육성 또는 철수 의사결정
- 개 (🐶) — 철수·정리 검토

## 관련 SKU
`c-sch-quad`, `c-sch-ansoff`

